summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc16
1 files changed, 11 insertions, 5 deletions
diff --git a/.vimrc b/.vimrc
index db86100..dc41cf7 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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