added auto-save and modified ESC keybind mappings
This commit is contained in:
parent
f30cbd55e0
commit
28b4c6ef8f
1 changed files with 15 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ Plug 'luochen1990/rainbow'
|
||||||
Plug 'kassio/neoterm'
|
Plug 'kassio/neoterm'
|
||||||
Plug 'simeji/winresizer'
|
Plug 'simeji/winresizer'
|
||||||
Plug 'yaegassy/coc-volar'
|
Plug 'yaegassy/coc-volar'
|
||||||
|
Plug '907th/vim-auto-save'
|
||||||
"Plug 'prettier/vim-prettier', { 'do': 'npm install', 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'svelte', 'yaml', 'html'] }
|
"Plug 'prettier/vim-prettier', { 'do': 'npm install', 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'svelte', 'yaml', 'html'] }
|
||||||
|
|
||||||
"Plug 'christoomey/vim-tmux-navigator'
|
"Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
|
@ -42,6 +43,12 @@ let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowTo
|
||||||
"set indentLine to nvim colorscheme
|
"set indentLine to nvim colorscheme
|
||||||
"let g:indentLine_setColors = 0
|
"let g:indentLine_setColors = 0
|
||||||
|
|
||||||
|
"enable AutoSave on start
|
||||||
|
let g:auto_save = 1
|
||||||
|
|
||||||
|
"silence AutoSave messages
|
||||||
|
let g:auto_save_silent = 1
|
||||||
|
|
||||||
let g:webdevicons_enable = 1
|
let g:webdevicons_enable = 1
|
||||||
let g:webdevicons_enable_nerdtree = 1
|
let g:webdevicons_enable_nerdtree = 1
|
||||||
|
|
||||||
|
|
@ -64,12 +71,20 @@ let g:NERDTreeIgnore = ['^node_modules$']
|
||||||
" do not close the markdown preview tab when switching to other buffers
|
" do not close the markdown preview tab when switching to other buffers
|
||||||
let g:mkdp_auto_close = 0
|
let g:mkdp_auto_close = 0
|
||||||
|
|
||||||
|
" Custom keybindings
|
||||||
|
|
||||||
" keybind map Ctrl + m to :MarkdownPreview
|
" keybind map Ctrl + m to :MarkdownPreview
|
||||||
nmap <C-m> <Plug>MarkdownPreviewToggle
|
nmap <C-m> <Plug>MarkdownPreviewToggle
|
||||||
|
|
||||||
" creates a small horizontal window for neoterm ( type |T <command> )
|
" creates a small horizontal window for neoterm ( type |T <command> )
|
||||||
nmap <C-s> 50:new
|
nmap <C-s> 50:new
|
||||||
|
|
||||||
|
" Toggle NerdTree
|
||||||
|
nmap <C-n> :NERDTreeToggle<CR>
|
||||||
|
|
||||||
|
"Escape Insert Mode with indentLine
|
||||||
|
imap ii <Esc>
|
||||||
|
|
||||||
" vim-prettier
|
" vim-prettier
|
||||||
"let g:prettier#quickfix_enabled = 0
|
"let g:prettier#quickfix_enabled = 0
|
||||||
"let g:prettier#quickfix_auto_focus = 0
|
"let g:prettier#quickfix_auto_focus = 0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue