This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=" " | |
nnoremap <SPACE> <Nop> | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" Vundle begin | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias poe="poetry run" | |
alias ippub="curl http://ifconfig.me" | |
alias k="kubectl" | |
alias t="terraform" | |
alias ls="exa" | |
alias cat="bat --paging=never -p" | |
alias less="bat" | |
alias ccat="/bin/cat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function git_unstage () { | |
git restore --staged $@ | |
} | |
# function to fast push code to git | |
function fast_git_push () { | |
git add .; git commit --amend --no-edit; git push origin $(git branch --show-current) $1 | |
} | |
# function to get azure ad user object id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "InputClass" | |
Identifier "Natural Scrolling" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Option "VertScrollDelta" "-50" | |
Option "HorizScrollDelta" "-50" | |
Option "DialDelta" "-1" | |
EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If applied, this commit will... | |
# Why was this change made? | |
# Any more references to issues, articles, etc? | |
# --- COMMIT END --- | |
# Remember to: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Changes: | |
# * bind 9 key to 9 workspace | |
# * prntscrn copy to clipboard | |
# * use py3status | |
# * move window across monitors | |
# | |
# i3 config file (v4) | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
# Set mod key (Mod1=<Alt>, Mod4=<Super>) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use this in path /etc/i3status.conf or ~/.i3/i3status.conf or ~/.config/i3/i3status.conf | |
# This are default manjaro i3status config with a little extra py3status config. | |
# This must be called by py3status in ~/.i3/config such as: | |
# status_command py3status -c /etc/i3status.conf # -c can be omitted. | |
# | |
# Added by jserpa: | |
# * `external_script vpn_info` | |
# --------------------- " --------------------- # | |
# i3status configuration file. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=" " | |
nnoremap <SPACE> <Nop> | |
set nocompatible " be iMproved, required | |
filetype off " required | |
call plug#begin() | |
Plug 'scrooloose/nerdTree' | |
nmap <C-n> :NERDTreeToggle<CR> |
NewerOlder