From dd7e28d3a92f901b8a1853cdd70656aa09bb4540 Mon Sep 17 00:00:00 2001 From: gxlin Date: Sun, 1 Aug 2021 23:51:46 +0800 Subject: Modify vim config --- .vim/plugin/airline.plug | 4 - .vim/plugin/asyncrun.plug | 5 -- .vim/plugin/easymotion.plug | 3 - .vim/plugin/fugitive.plug | 7 -- .vim/plugin/general.plug | 15 ---- .vim/plugin/gutentags.plug | 8 -- .vim/plugin/init.vim | 176 ++++++++++++++++++++++++++++++++++++++++++-- .vim/plugin/lang.plug | 4 - .vim/plugin/ledger.plug | 14 ---- .vim/plugin/markdown.plug | 4 - .vim/plugin/misc.plug | 14 ---- .vim/plugin/slime.plug | 15 ---- .vim/plugin/tex.plug | 1 - .vim/plugin/vimspector.plug | 68 ----------------- .vim/plugin/vimwiki.plug | 12 --- .vim/plugin/vista.plug | 9 --- 16 files changed, 168 insertions(+), 191 deletions(-) delete mode 100644 .vim/plugin/airline.plug delete mode 100644 .vim/plugin/asyncrun.plug delete mode 100644 .vim/plugin/easymotion.plug delete mode 100644 .vim/plugin/fugitive.plug delete mode 100644 .vim/plugin/general.plug delete mode 100644 .vim/plugin/gutentags.plug delete mode 100644 .vim/plugin/lang.plug delete mode 100644 .vim/plugin/ledger.plug delete mode 100644 .vim/plugin/markdown.plug delete mode 100644 .vim/plugin/misc.plug delete mode 100644 .vim/plugin/slime.plug delete mode 100644 .vim/plugin/tex.plug delete mode 100644 .vim/plugin/vimspector.plug delete mode 100644 .vim/plugin/vimwiki.plug delete mode 100644 .vim/plugin/vista.plug (limited to '.vim/plugin') diff --git a/.vim/plugin/airline.plug b/.vim/plugin/airline.plug deleted file mode 100644 index a1c1b94..0000000 --- a/.vim/plugin/airline.plug +++ /dev/null @@ -1,4 +0,0 @@ -Plug 'vim-airline/vim-airline' -Plug 'vim-airline/vim-airline-themes' - -let g:airline#extensions#tabline#enabled = 1 diff --git a/.vim/plugin/asyncrun.plug b/.vim/plugin/asyncrun.plug deleted file mode 100644 index bed9473..0000000 --- a/.vim/plugin/asyncrun.plug +++ /dev/null @@ -1,5 +0,0 @@ -let g:asyncrun_open = 6 " the number of lines of quickfix window -let g:asyncrun_bell = 1 " the bell rings when the task is done -" use f10 to open/close asyncrun quickfix window -nnoremap :call asyncrun#quickfix_toggle(6) - diff --git a/.vim/plugin/easymotion.plug b/.vim/plugin/easymotion.plug deleted file mode 100644 index ce87f12..0000000 --- a/.vim/plugin/easymotion.plug +++ /dev/null @@ -1,3 +0,0 @@ -Plug 'easymotion/vim-easymotion' - -map (easymotion-prefix) diff --git a/.vim/plugin/fugitive.plug b/.vim/plugin/fugitive.plug deleted file mode 100644 index 8dd25b2..0000000 --- a/.vim/plugin/fugitive.plug +++ /dev/null @@ -1,7 +0,0 @@ -" vim: ft=vim - -Plug 'tpope/vim-fugitive' - -nnoremap gl :Gclog! -- % -nnoremap gd :Gdiffsplit -nnoremap gs :G diff --git a/.vim/plugin/general.plug b/.vim/plugin/general.plug deleted file mode 100644 index 5f690d8..0000000 --- a/.vim/plugin/general.plug +++ /dev/null @@ -1,15 +0,0 @@ -" vim: ft=vim - -Plug 'Valloric/YouCompleteMe', { - \ 'do': 'python3 ./install.py --clangd-completer', - \ } -Plug 'prabirshrestha/vim-lsp' -Plug 'mattn/vim-lsp-settings' - -Plug 'dense-analysis/ale' -Plug 'sheerun/vim-polyglot' -Plug 'Yggdroot/LeaderF', {'do': ':LeaderfInstallCExtension'} -Plug 'tpope/vim-eunuch' - -let g:ycm_language_server = [] -let g:Lf_RootMarkers = [] diff --git a/.vim/plugin/gutentags.plug b/.vim/plugin/gutentags.plug deleted file mode 100644 index c2a7090..0000000 --- a/.vim/plugin/gutentags.plug +++ /dev/null @@ -1,8 +0,0 @@ -Plug 'ludovicchabant/vim-gutentags' - -let g:gutentags_project_root = ['.root', '.svn', '.git', '.hg', '.project'] -let g:gutentags_ctags_tagfile = '.tags' -let g:gutentags_ctags_extra_args = ['--fields=+niazS', '--extra=+q'] -let g:gutentags_ctags_extra_args = ['--c++-kinds=+px'] -let g:gutentags_ctags_extra_args = ['--c-kinds=+px'] - diff --git a/.vim/plugin/init.vim b/.vim/plugin/init.vim index 7f71d9c..1d02fcd 100644 --- a/.vim/plugin/init.vim +++ b/.vim/plugin/init.vim @@ -4,15 +4,8 @@ if empty(glob('~/.vim/autoload/plug.vim')) autocmd VimEnter * PlugInstall --sync | source $MYVIMRC endif -let s:plugins = split(expand('~/.vim/plugin/*.plug')) let s:settings = split(expand('~/.vim/plugin/*.vim')) -function! s:load_plugins() - for plugin in s:plugins - exec "source " . plugin - endfor -endfunction - function! s:load_settings() for setting in s:settings if setting !~ 'init.vim' @@ -22,7 +15,174 @@ function! s:load_settings() endfunction call plug#begin('~/.vim/plugged') -call s:load_plugins() + +" General +Plug 'Valloric/YouCompleteMe', { + \ 'do': 'python3 ./install.py --clangd-completer', + \ } +Plug 'prabirshrestha/vim-lsp' +Plug 'mattn/vim-lsp-settings' + +Plug 'dense-analysis/ale' +Plug 'sheerun/vim-polyglot' +Plug 'Yggdroot/LeaderF', {'do': ':LeaderfInstallCExtension'} +Plug 'tpope/vim-eunuch' +Plug 'godlygeek/tabular' +Plug 'ludovicchabant/vim-gutentags' + +let g:gutentags_project_root = ['.root', '.svn', '.git', '.hg', '.project'] +let g:gutentags_ctags_tagfile = '.tags' +let g:gutentags_ctags_extra_args = ['--fields=+niazS', '--extra=+q'] +let g:gutentags_ctags_extra_args = ['--c++-kinds=+px'] +let g:gutentags_ctags_extra_args = ['--c-kinds=+px'] + + +let g:ycm_language_server = [] +let g:Lf_RootMarkers = [] +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' + +let g:airline#extensions#tabline#enabled = 1 +Plug 'tpope/vim-fugitive' + +nnoremap gl :Gclog! -- % +nnoremap gd :Gdiffsplit +nnoremap gs :G +Plug 'easymotion/vim-easymotion' + +map (easymotion-prefix) + +" Language specific +Plug 'habamax/vim-godot', {'for': 'gdscript'} +Plug 'plasticboy/vim-markdown' +Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} +Plug 'ledger/vim-ledger', {'for': 'ledger'} + +let g:ledger_bin = 'ledger' +let g:ledger_align_at = 50 +let g:ledger_commodity_before = 0 + +au FileType ledger call s:ledger_keymap() + +function! s:ledger_keymap() abort + noremap { ?^\d + noremap } /^\d + inoremap =ledger#autocomplete_and_align() + vnoremap :LedgerAlign +endfunction +Plug 'iamcco/markdown-preview.nvim', { + \ 'do': {-> mkdp#util#install()}, + \ 'for': ['markdown', 'vim-plug'] + \ } + +" REPL +Plug 'jpalardy/vim-slime', { + \'on': [ + \'SlimeRegionSend', + \'SlimeParagraphSend', + \'SlimeConfig' + \] + \} + +let g:slime_no_mappings = 1 + +xmap SlimeRegionSend +nmap SlimeParagraphSend +nmap v SlimeConfig + +let g:slime_target = 'tmux' + +" Misc +Plug 'skywind3000/asyncrun.vim' + +let g:asyncrun_open = 6 " the number of lines of quickfix window +let g:asyncrun_bell = 1 " the bell rings when the task is done +" use f10 to open/close asyncrun quickfix window +nnoremap :call asyncrun#quickfix_toggle(6) + + +Plug 'mhinz/vim-signify' +Plug 'tpope/vim-unimpaired' + +Plug 'joshdick/onedark.vim' +Plug 'liuchengxu/vista.vim' + +let g:vista_default_executive = 'ctags' + +let g:vista_executive_for = { + \ 'go': 'vim_lsp', + \ } + +nnoremap s :Vista + +Plug 'puremourning/vimspector', { 'on': 'VimspectorContinue' } + +let g:vimspector_install_gadgets = ['debugpy'] + +nmap dc VimspectorContinue +nmap dq VimspectorStop +nmap db VimspectorToggleBreakpoint +nmap dn VimspectorStepOver +nmap ds VimspectorStepInto +nmap df VimspectorStepOut +nmap di VimspectorBalloonEval +xmap di VimspectorBalloonEval + +let s:mapped = {} + +function! s:set_debug_keymaps() abort + if has_key(s:mapped, string(bufnr())) + return + endif + + " nmap c VimspectorContinue + " nmap q VimspectorStop + " nmap b VimspectorToggleBreakpoint + nmap m VimspectorStepOver + " nmap s VimspectorStepInto + " nmap f VimspectorStepOut + " nmap i VimspectorBalloonEval + " xmap i VimspectorBalloonEval + + let s:mapped[string(bufnr())] = {'modifiable': &modifiable} + + setlocal nomodifiable +endfunction + +function! s:unset_debug_keymaps() abort + let original_buf = bufnr() + let hidden = &hidden + + try + set hidden + for bufnr in keys(s:mapped) + try + execute 'noautocmd buffer' bufnr + " silent! nunmap c + " silent! nunmap q + " silent! nunmap b + silent! nunmap m + " silent! nunmap s + " silent! nunmap f + " silent! nunmap i + " silent! xunmap i + + let &l:modifiable = s:mapped[bufnr]['modifiable'] + endtry + endfor + finally + execute 'noautocmd buffer' original_buf + let &hidden = hidden + endtry + + let s:mapped = {} +endfunction + +augroup CustomMappings + au! + autocmd User VimspectorJumpedToFrame call s:set_debug_keymaps() + autocmd User VimspectorDebugEnded call s:unset_debug_keymaps() +augroup end call plug#end() call s:load_settings() diff --git a/.vim/plugin/lang.plug b/.vim/plugin/lang.plug deleted file mode 100644 index 6c40e71..0000000 --- a/.vim/plugin/lang.plug +++ /dev/null @@ -1,4 +0,0 @@ -" vim: ft=vim - -Plug 'habamax/vim-godot', {'for': 'gdscript'} - diff --git a/.vim/plugin/ledger.plug b/.vim/plugin/ledger.plug deleted file mode 100644 index b3a1e25..0000000 --- a/.vim/plugin/ledger.plug +++ /dev/null @@ -1,14 +0,0 @@ -Plug 'ledger/vim-ledger', {'for': 'ledger'} - -let g:ledger_bin = 'ledger' -let g:ledger_align_at = 50 -let g:ledger_commodity_before = 0 - -au FileType ledger call s:ledger_keymap() - -function! s:ledger_keymap() abort - noremap { ?^\d - noremap } /^\d - inoremap =ledger#autocomplete_and_align() - vnoremap :LedgerAlign -endfunction diff --git a/.vim/plugin/markdown.plug b/.vim/plugin/markdown.plug deleted file mode 100644 index 1e12dad..0000000 --- a/.vim/plugin/markdown.plug +++ /dev/null @@ -1,4 +0,0 @@ -Plug 'iamcco/markdown-preview.nvim', { - \ 'do': {-> mkdp#util#install()}, - \ 'for': ['markdown', 'vim-plug'] - \ } diff --git a/.vim/plugin/misc.plug b/.vim/plugin/misc.plug deleted file mode 100644 index a634210..0000000 --- a/.vim/plugin/misc.plug +++ /dev/null @@ -1,14 +0,0 @@ -Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} - -Plug 'skywind3000/asyncrun.vim' - -let g:asyncrun_open = 6 " the number of lines of quickfix window -let g:asyncrun_bell = 1 " the bell rings when the task is done -" use f10 to open/close asyncrun quickfix window -nnoremap :call asyncrun#quickfix_toggle(6) - -Plug 'mhinz/vim-signify' -Plug 'tpope/vim-unimpaired' -Plug 'godlygeek/tabular' - -Plug 'joshdick/onedark.vim' diff --git a/.vim/plugin/slime.plug b/.vim/plugin/slime.plug deleted file mode 100644 index 0989a66..0000000 --- a/.vim/plugin/slime.plug +++ /dev/null @@ -1,15 +0,0 @@ -Plug 'jpalardy/vim-slime', { - \'on': [ - \'SlimeRegionSend', - \'SlimeParagraphSend', - \'SlimeConfig' - \] - \} - -let g:slime_no_mappings = 1 - -xmap SlimeRegionSend -nmap SlimeParagraphSend -nmap v SlimeConfig - -let g:slime_target = 'tmux' diff --git a/.vim/plugin/tex.plug b/.vim/plugin/tex.plug deleted file mode 100644 index 6c3f788..0000000 --- a/.vim/plugin/tex.plug +++ /dev/null @@ -1 +0,0 @@ -" Plug 'lervag/vimtex' diff --git a/.vim/plugin/vimspector.plug b/.vim/plugin/vimspector.plug deleted file mode 100644 index a39d4bd..0000000 --- a/.vim/plugin/vimspector.plug +++ /dev/null @@ -1,68 +0,0 @@ -Plug 'puremourning/vimspector', { 'on': 'VimspectorContinue' } - -let g:vimspector_install_gadgets = ['debugpy'] - -nmap dc VimspectorContinue -nmap dq VimspectorStop -nmap db VimspectorToggleBreakpoint -nmap dn VimspectorStepOver -nmap ds VimspectorStepInto -nmap df VimspectorStepOut -nmap di VimspectorBalloonEval -xmap di VimspectorBalloonEval - -let s:mapped = {} - -function! s:set_debug_keymaps() abort - if has_key(s:mapped, string(bufnr())) - return - endif - - " nmap c VimspectorContinue - " nmap q VimspectorStop - " nmap b VimspectorToggleBreakpoint - nmap m VimspectorStepOver - " nmap s VimspectorStepInto - " nmap f VimspectorStepOut - " nmap i VimspectorBalloonEval - " xmap i VimspectorBalloonEval - - let s:mapped[string(bufnr())] = {'modifiable': &modifiable} - - setlocal nomodifiable -endfunction - -function! s:unset_debug_keymaps() abort - let original_buf = bufnr() - let hidden = &hidden - - try - set hidden - for bufnr in keys(s:mapped) - try - execute 'noautocmd buffer' bufnr - " silent! nunmap c - " silent! nunmap q - " silent! nunmap b - silent! nunmap m - " silent! nunmap s - " silent! nunmap f - " silent! nunmap i - " silent! xunmap i - - let &l:modifiable = s:mapped[bufnr]['modifiable'] - endtry - endfor - finally - execute 'noautocmd buffer' original_buf - let &hidden = hidden - endtry - - let s:mapped = {} -endfunction - -augroup CustomMappings - au! - autocmd User VimspectorJumpedToFrame call s:set_debug_keymaps() - autocmd User VimspectorDebugEnded call s:unset_debug_keymaps() -augroup end diff --git a/.vim/plugin/vimwiki.plug b/.vim/plugin/vimwiki.plug deleted file mode 100644 index 76de8f5..0000000 --- a/.vim/plugin/vimwiki.plug +++ /dev/null @@ -1,12 +0,0 @@ -" vim: ft=vim - -Plug 'vimwiki/vimwiki' - -let g:vimwiki_list = [{'path': '~/Documents/notes', - \ 'syntax': 'markdown', 'ext': '.md'}] - -au FileType vimwiki setlocal textwidth=72 - -let g:vimwiki_CJK_length = 1 -let g:vimwiki_url_maxsave = 0 -let g:vimwiki_global_ext = 0 diff --git a/.vim/plugin/vista.plug b/.vim/plugin/vista.plug deleted file mode 100644 index 02264b9..0000000 --- a/.vim/plugin/vista.plug +++ /dev/null @@ -1,9 +0,0 @@ -Plug 'liuchengxu/vista.vim' - -let g:vista_default_executive = 'ctags' - -let g:vista_executive_for = { - \ 'go': 'vim_lsp', - \ } - -nnoremap s :Vista -- cgit v1.2.3