vim-settings/vim/rc/init.rc.vim

20 lines
466 B
VimL
Raw Normal View History

2015-03-26 17:09:26 +00:00
"Allows filetype detection
filetype on
filetype plugin indent on
" Set backup dirs
set backup
2015-11-07 06:52:08 +00:00
if has('nvim')
set backupdir=~/.config/nvim/backup
set directory=~/.config/nvim/tmp
set viminfo='100,n~/.config/nvim/tmp/viminfo.nvim
else
set backupdir=~/.vim/backup
set directory=~/.vim/tmp
set viminfo='100,n~/.vim/tmp/viminfo.vim
endif
2015-03-26 17:09:26 +00:00
2019-10-16 16:49:04 +00:00
" TODO: Should this go somewhere else?
2015-03-26 17:09:26 +00:00
" Filetype extension
au BufRead,BufNewFile *.md set syntax=markdown