neovim: Checking in changes I have been making to my config during work
This commit is contained in:
parent
830a4e50e1
commit
c7b2819395
2 changed files with 8 additions and 1 deletions
|
@ -3,11 +3,13 @@ call plug#begin()
|
||||||
Plug 'semanser/vim-outdated-plugins'
|
Plug 'semanser/vim-outdated-plugins'
|
||||||
" Show trailing whitespaces (this could also easaly be achieved by settings
|
" Show trailing whitespaces (this could also easaly be achieved by settings
|
||||||
Plug 'ntpeters/vim-better-whitespace'
|
Plug 'ntpeters/vim-better-whitespace'
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
Plug 'w0rp/ale'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Add a set of commands that will make the 80th column of a document visible
|
" Add a set of commands that will make the 80th column of a document visible
|
||||||
highlight ColorColumn ctermbg=244 guibg=lightgrey
|
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=
|
command NoCol set colorcolumn=
|
||||||
Col
|
Col
|
||||||
|
|
||||||
|
@ -28,3 +30,6 @@ set scrolloff=2
|
||||||
" Classic
|
" Classic
|
||||||
set number
|
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
|
||||||
|
|
2
.github/README.md
vendored
2
.github/README.md
vendored
|
@ -37,6 +37,8 @@ git --work-tree=$HOME --git-dir=$HOME/.dotgit checkout master
|
||||||
- missing executables warnings
|
- missing executables warnings
|
||||||
- environment templates? (git.env!)
|
- environment templates? (git.env!)
|
||||||
- fix the umask
|
- fix the umask
|
||||||
|
- Vim put the Yaml indent Stuff in a proper filetype detection script (ftplugin?)
|
||||||
|
- Vim also add cfn filetype for cfn-lint
|
||||||
|
|
||||||
## Echos to be replaced by msg()
|
## Echos to be replaced by msg()
|
||||||
- fuck error msg
|
- fuck error msg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue