File tree Expand file tree Collapse file tree 3 files changed +27
-12
lines changed Expand file tree Collapse file tree 3 files changed +27
-12
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,6 @@ return {
55 name = " plenary"
66 },
77
8- {
9- " folke/trouble.nvim" ,
10- config = function ()
11- -- TODO: I don't care, but maybe i should...
12- require (" trouble" ).setup {
13- icons = false ,
14- }
15- end
16- },
17-
188 " github/copilot.vim" ,
199 " eandrju/cellular-automaton.nvim" ,
2010}
Original file line number Diff line number Diff line change 1+ return {
2+ {
3+ " folke/trouble.nvim" ,
4+ config = function ()
5+ require (" trouble" ).setup ({
6+ icons = false ,
7+ })
8+
9+ vim .keymap .set (" n" , " <leader>tt" , function ()
10+ require (" trouble" ).toggle ()
11+ end )
12+
13+ vim .keymap .set (" n" , " <leader>tn" , function ()
14+ require (" trouble" ).next ({skip_groups = true , jump = true });
15+ end )
16+
17+ vim .keymap .set (" n" , " <leader>tp" , function ()
18+ require (" trouble" ).previous ({skip_groups = true , jump = true });
19+ end )
20+
21+ end
22+ },
23+ }
Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ if not vim.loop.fs_stat(lazypath) then
1111end
1212vim .opt .rtp :prepend (lazypath )
1313
14- require (" lazy" ).setup (" theprimeagen.lazy" )
15-
14+ require (" lazy" ).setup ({
15+ spec = " theprimeagen.lazy" ,
16+ change_detection = { notify = false }
17+ })
1618--[[
1719require("lazy").setup({
1820 use("~/personal/harpoon")
You can’t perform that action at this time.
0 commit comments