Compare commits

..

No commits in common. "436fb9485ab7681484dc08c108e00f276c8817b5" and "e4de3f2670efe11c25913d5d884c0269ff2dff62" have entirely different histories.

3 changed files with 1 additions and 24 deletions

View file

@ -18,8 +18,6 @@ vim.o.list = true
vim.o.relativenumber = true
vim.o.number = true
vim.o.colorcolumn = "101"
vim.g.mapleader = " "
vim.g.maplocalleader = " "

View file

@ -7,12 +7,6 @@ return {
vim.cmd("colorscheme gruvbox-material")
end
},
{
'stevearc/dressing.nvim',
enabled = custom.full_feature,
event = "VeryLazy",
opts = { },
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",

View file

@ -48,8 +48,7 @@ return {
"hrsh7th/cmp-cmdline",
"L3MON4D3/LuaSnip",
},
event = { "BufReadPre", "BufNewFile" },
cmd = { "LspInfo", "LspInstall", "LspUninstall" },
event = "VeryLazy",
config = function (_, opts)
local capabilities = require("cmp_nvim_lsp").default_capabilities()
@ -102,18 +101,4 @@ return {
{ "gq", vim.diagnostic.setloclist, mode = "n" }
},
},
{
"folke/trouble.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
event = "VeryLazy",
keys = {
{ "<leader>xx", "<cmd>TroubleToggle<cr>", mode = "n" },
{ "<leader>xw", "<cmd>TroubleToggle workspace_diagnostics<cr>", mode = "n" },
{ "<leader>xd", "<cmd>TroubleToggle document_diagnostics<cr>", mode = "n" },
{ "<leader>xq", "<cmd>TroubleToggle quickfix<cr>", mode = "n" },
{ "<leader>xl", "<cmd>TroubleToggle loclist<cr>", mode = "n" },
{ "<leader>xr", "<cmd>TroubleToggle lsp_references<cr>", mode = "n" },
},
opts = { },
},
}