added undotree
This commit is contained in:
parent
8db0f9e12e
commit
3ed076345f
|
@ -43,3 +43,6 @@
|
||||||
[submodule "qutebrowser/.config/qutebrowser/catppuccin"]
|
[submodule "qutebrowser/.config/qutebrowser/catppuccin"]
|
||||||
path = qutebrowser/.config/qutebrowser/catppuccin
|
path = qutebrowser/.config/qutebrowser/catppuccin
|
||||||
url = https://github.com/catppuccin/qutebrowser.git
|
url = https://github.com/catppuccin/qutebrowser.git
|
||||||
|
[submodule "vim/.vim/pack/default/start/undotree"]
|
||||||
|
path = vim/.vim/pack/default/start/undotree
|
||||||
|
url = https://github.com/mbbill/undotree.git
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 36ff7abb6b60980338344982ad4cdf03f7961ecd
|
10
vim/.vimrc
10
vim/.vimrc
|
@ -259,7 +259,7 @@ let g:mucomplete#completion_delay = 0
|
||||||
"autocmd InsertCharPre * call OpenCompletion()
|
"autocmd InsertCharPre * call OpenCompletion()
|
||||||
"
|
"
|
||||||
set completeopt+=longest,menu,menuone,preview,noselect,noinsert
|
set completeopt+=longest,menu,menuone,preview,noselect,noinsert
|
||||||
set splitkeep=screen
|
" set splitkeep=screen
|
||||||
"" set completeopt+=menuone,noselect,noinsert
|
"" set completeopt+=menuone,noselect,noinsert
|
||||||
""
|
""
|
||||||
" autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
" autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
||||||
|
@ -278,6 +278,14 @@ set splitkeep=screen
|
||||||
" endif
|
" endif
|
||||||
" endfunction
|
" endfunction
|
||||||
|
|
||||||
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
"
|
||||||
|
" undotree
|
||||||
|
"
|
||||||
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
|
nnoremap <F5> :UndotreeToggle<CR>
|
||||||
|
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
"
|
"
|
||||||
" Remove conceal from Markdown when Insert mode is set
|
" Remove conceal from Markdown when Insert mode is set
|
||||||
|
|
Loading…
Reference in New Issue