File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,12 +21,14 @@ function M.lsp(buf)
2121 -- LSP-related keymaps, ONLY effective in buffers with LSP(s) attached
2222 [" n|<leader>li" ] = map_cr (" LspInfo" ):with_silent ():with_buffer (buf ):with_desc (" lsp: Info" ),
2323 [" n|<leader>lr" ] = map_cr (" LspRestart" ):with_silent ():with_buffer (buf ):with_nowait ():with_desc (" lsp: Restart" ),
24- [" n|go" ] = map_callback (function ()
25- require (" edgy" ).toggle (" right" )
26- end )
24+ [" n|go" ] = map_cr (" Trouble symbols toggle win.position=right" )
2725 :with_silent ()
2826 :with_buffer (buf )
2927 :with_desc (" lsp: Toggle outline" ),
28+ [" n|gto" ] = map_cr (" Telescope lsp_document_symbols" )
29+ :with_silent ()
30+ :with_buffer (buf )
31+ :with_desc (" lsp: Toggle outline in Telescope" ),
3032 [" n|g[" ] = map_cr (" Lspsaga diagnostic_jump_prev" )
3133 :with_silent ()
3234 :with_buffer (buf )
Original file line number Diff line number Diff line change @@ -8,20 +8,13 @@ require("keymap.helpers")
88
99local mappings = {
1010 plugins = {
11- -- Plugin: edgy
12- [" n|<C-n>" ] = map_callback (function ()
13- require (" edgy" ).toggle (" left" )
14- end )
15- :with_noremap ()
16- :with_silent ()
17- :with_desc (" filetree: Toggle" ),
18-
1911 -- Plugin: vim-fugitive
2012 [" n|gps" ] = map_cr (" G push" ):with_noremap ():with_silent ():with_desc (" git: Push" ),
2113 [" n|gpl" ] = map_cr (" G pull" ):with_noremap ():with_silent ():with_desc (" git: Pull" ),
2214 [" n|<leader>gG" ] = map_cu (" Git" ):with_noremap ():with_silent ():with_desc (" git: Open git-fugitive" ),
2315
2416 -- Plugin: nvim-tree
17+ [" n|<C-n>" ] = map_cu (" NvimTreeToggle" ):with_noremap ():with_silent ():with_desc (" filetree: Toggle" ),
2518 [" n|<leader>nf" ] = map_cr (" NvimTreeFindFile" ):with_noremap ():with_silent ():with_desc (" filetree: Find file" ),
2619 [" n|<leader>nr" ] = map_cr (" NvimTreeRefresh" ):with_noremap ():with_silent ():with_desc (" filetree: Refresh" ),
2720
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,11 +10,6 @@ ui["akinsho/bufferline.nvim"] = {
1010 event = { " BufReadPre" , " BufAdd" , " BufNewFile" },
1111 config = require (" ui.bufferline" ),
1212}
13- ui [" folke/edgy.nvim" ] = {
14- lazy = true ,
15- event = { " BufReadPre" , " BufAdd" , " BufNewFile" },
16- config = require (" ui.edgy" ),
17- }
1813ui [" Jint-lzxy/nvim" ] = {
1914 lazy = false ,
2015 branch = " refactor/syntax-highlighting" ,
You can’t perform that action at this time.
0 commit comments