neovim: Merging config between the work laptop and a small change I made on my x220
This commit is contained in:
commit
ea57c0fc60
11 changed files with 57 additions and 9 deletions
|
@ -4,11 +4,13 @@ Plug 'semanser/vim-outdated-plugins'
|
|||
" Show trailing whitespaces (this could also easily be achieved by settings,
|
||||
" but the plugin is very neat)
|
||||
Plug 'ntpeters/vim-better-whitespace'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'w0rp/ale'
|
||||
call plug#end()
|
||||
|
||||
" Add a set of commands that will make the 80th column of a document visible
|
||||
highlight ColorColumn ctermbg=244 guibg=lightgrey
|
||||
command Col let &colorcolumn=join(range(81,999),",")
|
||||
command Col let &colorcolumn=join(range(81,100),",")
|
||||
command NoCol set colorcolumn=
|
||||
Col
|
||||
|
||||
|
@ -29,3 +31,6 @@ set scrolloff=2
|
|||
" Classic
|
||||
set number
|
||||
|
||||
" Yaml Indent
|
||||
"autocmd BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml foldmethod=indent
|
||||
"autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue