nvim dot files

add trouble plugin

+21
+19
after/plugin/trouble.lua
··· 1 + -- https://github.com/folke/trouble.nvim 2 + 3 + local trouble = require('trouble') 4 + 5 + trouble.setup{ 6 + icons = false, 7 + fold_open = "v", -- icon used for open folds 8 + fold_closed = ">", -- icon used for closed folds 9 + indent_lines = false, -- add an indent guide below the fold icons 10 + signs = { 11 + -- icons / text used for a diagnostic 12 + error = "error", 13 + warning = "warn", 14 + hint = "hint", 15 + information = "info" 16 + }, 17 + } 18 + 19 + vim.keymap.set("n", "<leader>xx", function() trouble.toggle() end)
+2
lua/shail/packer.lua
··· 48 48 use 'ap/vim-buftabline' 49 49 use 'vim-airline/vim-airline' 50 50 use 'vim-airline/vim-airline-themes' 51 + 52 + use 'folke/trouble.nvim' 51 53 end)