File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 5252[submodule "pack/cedarvim/start/yats.vim "]
5353 path = pack/cedarvim/start/yats.vim
5454 url = https://github.com/HerringtonDarkholme/yats.vim
55+ [submodule "pack/cedarvim/start/vim-lsp "]
56+ path = pack/cedarvim/start/vim-lsp
57+ url = https://github.com/prabirshrestha/vim-lsp.git
58+ [submodule "pack/cedarvim/start/vim-lsp-settings "]
59+ path = pack/cedarvim/start/vim-lsp-settings
60+ url = https://github.com/mattn/vim-lsp-settings.git
Original file line number Diff line number Diff line change 1+ " ========= LSP ========="
2+
3+ let g: lsp_settings = { ' typeprof' : { ' disabled' : 1 } }
4+ let g: lsp_document_highlight_enabled = 0
5+ let g: lsp_document_code_action_signs_enabled = 0
6+ set foldmethod = expr
7+ \ foldexpr = lsp#ui#vim#folding#foldexpr ()
8+ \ foldtext = lsp#ui#vim#folding#foldtext ()
9+ set foldlevel = 99
10+
11+ nmap gd :LspDefinition<CR>
12+ nmap gpd :LspPeekDefinition<CR>
13+ nmap gs :LspDocumentSymbol<CR>
14+ nmap gS :LspWorkspaceSymbol<CR>
15+
116" source user customizations if defined
217if filereadable (expand (" ~/.vimrc.after" ))
318 source ~/.vimrc.after
You can’t perform that action at this time.
0 commit comments