Try to restore scheme, add vimwiki filetype
This commit is contained in:
parent
f4d92ed3d8
commit
dc820cae1c
3 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
setlocal fdm=indent
|
setlocal fdm=indent
|
||||||
setlocal smartindent
|
setlocal smartindent
|
||||||
setlocal list
|
setlocal list
|
||||||
|
" set an alternate colorscheme from coding
|
||||||
|
colorscheme breezy
|
||||||
|
|
|
@ -3,3 +3,5 @@ setlocal sw=2 ts=2
|
||||||
setlocal fdm=indent
|
setlocal fdm=indent
|
||||||
setlocal smartindent
|
setlocal smartindent
|
||||||
setlocal list
|
setlocal list
|
||||||
|
" set an alternate colorscheme from coding
|
||||||
|
colorscheme breezy
|
||||||
|
|
5
ftplugin/vimwiki.vim
Normal file
5
ftplugin/vimwiki.vim
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
" and set up the buffer just like a markdown file
|
||||||
|
let oldwd = getcwd()
|
||||||
|
exec "cd ~/.config/nvim/ftplugin"
|
||||||
|
source markdown.vim
|
||||||
|
exec "cd " . oldwd
|
Loading…
Reference in a new issue