update dotfiles v2
parent
40971a4878
commit
cde5427d44
1
bashrc
1
bashrc
|
@ -63,6 +63,7 @@ if [[ "$OSTYPE" == 'darwin'* ]]; then
|
||||||
if [[ -z $TMUX ]]; then
|
if [[ -z $TMUX ]]; then
|
||||||
export PATH=$GEM_HOME/bin:$PATH
|
export PATH=$GEM_HOME/bin:$PATH
|
||||||
export PATH=$HOME/.linkerd2/bin:$PATH
|
export PATH=$HOME/.linkerd2/bin:$PATH
|
||||||
|
export PATH=$HOME/.rvm/bin:$PATH
|
||||||
export PATH=/usr/local/opt/python/libexec/bin:$PATH
|
export PATH=/usr/local/opt/python/libexec/bin:$PATH
|
||||||
export PATH=/usr/local/opt/ncurses/bin:$PATH
|
export PATH=/usr/local/opt/ncurses/bin:$PATH
|
||||||
fi
|
fi
|
||||||
|
|
6
vimrc
6
vimrc
|
@ -47,7 +47,7 @@ nnoremap <leader>l :CodeQuery Call<CR>
|
||||||
nnoremap <leader>r :CodeQuery Caller<CR>
|
nnoremap <leader>r :CodeQuery Caller<CR>
|
||||||
nnoremap <leader>e :CodeQuery Callee<CR>
|
nnoremap <leader>e :CodeQuery Callee<CR>
|
||||||
|
|
||||||
"" Set tabs to 2 spaces
|
"" Set default tabs to 2 spaces
|
||||||
set tabstop=2
|
set tabstop=2
|
||||||
set shiftwidth=2
|
set shiftwidth=2
|
||||||
set expandtab
|
set expandtab
|
||||||
|
@ -72,9 +72,9 @@ colorscheme gotham256
|
||||||
|
|
||||||
"" Language/filetype settings
|
"" Language/filetype settings
|
||||||
syntax enable
|
syntax enable
|
||||||
filetype plugin on
|
|
||||||
autocmd FileType yaml setlocal tabstop=2 shiftwidth=2 expandtab
|
|
||||||
autocmd FileType go setlocal tabstop=2 shiftwidth=2
|
autocmd FileType go setlocal tabstop=2 shiftwidth=2
|
||||||
|
autocmd FileType py setlocal tabstop=4 shiftwidth=4 expandtab
|
||||||
|
autocmd FileType yaml setlocal tabstop=2 shiftwidth=2 expandtab
|
||||||
|
|
||||||
"" Ctags
|
"" Ctags
|
||||||
set path+=;/
|
set path+=;/
|
||||||
|
|
Loading…
Reference in New Issue