nix/home-manger/neovim: theming and yaml config

This commit is contained in:
steveej 2018-12-17 13:14:22 +01:00
parent 194c2aaf9c
commit 8803f835b8
3 changed files with 21 additions and 3 deletions

View file

@ -53,14 +53,18 @@ let g:ctrlp_custom_ignore = {
"let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' }
"let g:pydiction_location = '~/.vim/bundle/pydiction/complete-dict'
" allways show status line
" always show status line
set ls=2
" let g:airline#extensions#tabline#formatter = 'default'
" let g:airline#extensions#tabline#enabled=1
let g:airline_theme='papercolor'
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
"set textwidth=80
set backspace=indent,eol,start
set wildignore+=*/site/*,*.so,*.swp,*.zip
@ -124,7 +128,7 @@ augroup END
" YAML {{{
augroup ft_yaml
au!
setlocal autoindent sw=2 et tabstop=2 shiftwidth=2 softtabstop=2
setlocal tabstop=2 shiftwidth=2 softtabstop=2 expandtab
augroup END
" }}}