1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-24 12:26:05 -05:00
dotfiles/cfg/vimrc

15 lines
330 B
VimL
Raw Normal View History

2017-08-01 23:06:24 -04:00
call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
call plug#end()
" general config
set number
" Allow saving files as root when vim was launched as user
cmap w!! w !sudo tee > /dev/null %
" vim-airline configuration
set laststatus=2
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#enabled = 1