diff options
-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 |