summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2018-04-25 20:03:04 +0200
committerEduardo Pedroni <e.pedroni91@gmail.com>2018-04-25 20:03:04 +0200
commit679bc78a76eaa0dda051fde3a789e5e84da7d55f (patch)
treee235f3ad92b938042c01742cf740b706f529e8c5 /.vimrc
parentdc948e9cd70afc899459685dbd598ad5ac983477 (diff)
Updated vimrc
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