Skip to content

Instantly share code, notes, and snippets.

@c0desurfer
Last active February 25, 2018 21:07
Show Gist options
  • Save c0desurfer/30f5254727957a336a9992b5a539972f to your computer and use it in GitHub Desktop.
Save c0desurfer/30f5254727957a336a9992b5a539972f to your computer and use it in GitHub Desktop.
Vim with Powerline
" powerline
set rtp+=/usr/local/lib/python2.7/dist-packages/powerline/bindings/vim/
set laststatus=2 " always display the statusline in all windows
set showtabline=2 " always display the tabline, even if there is only one tab
set noshowmode " hide the default mode text (e.g. -- INSERT -- below the statusline)
set t_Co=256
" personal settings
set background=dark
set number " this should turn line numbers on
colorscheme deus
" spaces for tabs
set tabstop=2 " one tab are 2 spaces
set softtabstop=2 " tabs are 2 spaces while editing
set expandtab " let tabs be spaces
set cursorline " highlights line with cursor inside
set showmatch " show matching brackets
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment