diff options
author | Eduardo Pedroni <e.pedroni91@gmail.com> | 2018-04-25 20:03:04 +0200 |
---|---|---|
committer | Eduardo Pedroni <e.pedroni91@gmail.com> | 2018-04-25 20:03:04 +0200 |
commit | 679bc78a76eaa0dda051fde3a789e5e84da7d55f (patch) | |
tree | e235f3ad92b938042c01742cf740b706f529e8c5 | |
parent | dc948e9cd70afc899459685dbd598ad5ac983477 (diff) |
Updated vimrc
-rw-r--r-- | .vimrc | 16 |
1 files changed, 11 insertions, 5 deletions
@@ -41,11 +41,17 @@ let g:aldmeris_termcolors = "tango" let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#fnamemod = ':t' let g:airline_theme='powerlineish' + set laststatus=2 set noshowmode set number -set tabstop=4 -set expandtab -syntax enable -nnoremap <Tab> :bnext <CR> -nnoremap <S-Tab> :bprev <CR> + +" These two should be the same value, tabstop should be unchanged +set softtabstop=4 +set shiftwidth=4 + +nnoremap <tab> :bnext<CR> +nnoremap <S-tab> :bprev<CR> + +" tmux colour issue workaround +set t_Co=256 |