Try to restore scheme, add vimwiki filetype

This commit is contained in:
Thomas Gideon 2023-05-09 10:52:10 -04:00
parent f4d92ed3d8
commit dc820cae1c
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,5 @@
setlocal fdm=indent
setlocal smartindent
setlocal list
" set an alternate colorscheme from coding
colorscheme breezy

View File

@ -3,3 +3,5 @@ setlocal sw=2 ts=2
setlocal fdm=indent
setlocal smartindent
setlocal list
" set an alternate colorscheme from coding
colorscheme breezy

5
ftplugin/vimwiki.vim Normal file
View 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