neovim aliases ejs with html
This commit is contained in:
parent
d4f031cc27
commit
07e93d26c9
1 changed files with 4 additions and 0 deletions
|
@ -71,6 +71,8 @@ Plug 'tpope/vim-eunuch'
|
||||||
" ColorScheme
|
" ColorScheme
|
||||||
Plug 'shaunsingh/nord.nvim'
|
Plug 'shaunsingh/nord.nvim'
|
||||||
|
|
||||||
|
" StartScreen
|
||||||
|
Plug 'mhinz/vim-startify'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
let mapleader = " "
|
let mapleader = " "
|
||||||
|
@ -126,4 +128,6 @@ augroup RELMS
|
||||||
autocmd BufWritePre * :%s/\s\+$//e
|
autocmd BufWritePre * :%s/\s\+$//e
|
||||||
autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
|
autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif
|
||||||
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
|
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
|
||||||
|
|
||||||
|
au BufNewFile,BufRead *.ejs set filetype=html
|
||||||
augroup END
|
augroup END
|
||||||
|
|
Reference in a new issue