Vim and zsh fun!

This commit is contained in:
Dan Buch 2019-03-07 11:04:17 -05:00
parent 69a46f848f
commit 9dd19d6568
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7
2 changed files with 6 additions and 1 deletions

1
vimrc
View File

@ -15,6 +15,7 @@ set ignorecase
set incsearch
set laststatus=2
set linebreak
set modeline
set nowrap
set number
set smartcase

6
zshrc
View File

@ -62,7 +62,7 @@ fpath=(/usr/local/share/zsh/site-functions $fpath)
source $ZSH/oh-my-zsh.sh
unalias gb
unalias gb &>/dev/null
export VISUAL=vim
@ -71,6 +71,10 @@ if [[ -f /usr/local/share/zsh/site-functions/_aws ]] ; then
source /usr/local/share/zsh/site-functions/_aws
fi
if [[ -f ~/.local/bin/aws_zsh_completer.sh ]]; then
source ~/.local/bin/aws_zsh_completer.sh
fi
if command -v xdg-open &>/dev/null; then
alias open=xdg-open
fi