Archived
0
0
Fork 0

neovim aliases ejs with html

This commit is contained in:
Daryl Ronningen 2021-12-28 01:21:08 -08:00
parent d4f031cc27
commit 07e93d26c9
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B

View file

@ -71,6 +71,8 @@ Plug 'tpope/vim-eunuch'
" ColorScheme
Plug 'shaunsingh/nord.nvim'
" StartScreen
Plug 'mhinz/vim-startify'
call plug#end()
let mapleader = " "
@ -126,4 +128,6 @@ augroup RELMS
autocmd BufWritePre * :%s/\s\+$//e
autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
au BufNewFile,BufRead *.ejs set filetype=html
augroup END