diff --git a/init.lua b/init.lua index 1677fb0..0134b6b 100644 --- a/init.lua +++ b/init.lua @@ -25,3 +25,4 @@ require("user.discord") require("user.spectre") require("user.dap") require("user.copilot") +require("user.dressing") diff --git a/lua/user/dressing.lua b/lua/user/dressing.lua new file mode 100644 index 0000000..aefd93b --- /dev/null +++ b/lua/user/dressing.lua @@ -0,0 +1,6 @@ +local status_ok, dressing = pcall(require, "dressing") +if not status_ok then + return +end + +dressing.setup({}) diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index e357c5a..dd4f586 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -36,11 +36,8 @@ keymap("n", "", ":bnext", opts) keymap("n", "", ":bprevious", opts) -- Telescope -keymap("n", "ff", ":Telescope frecency", opts) keymap("n", "fg", ":Telescope live_grep", opts) keymap("n", "fb", ":Telescope buffers", opts) -keymap("n", "fe", ":Telescope emoji", opts) -keymap("n", "fp", ":Telescope project", opts) keymap("n", "fd", ":Telescope dap commands", opts) -- Comment diff --git a/lua/user/lsp/init.lua b/lua/user/lsp/init.lua index 76b2eac..4c7d759 100644 --- a/lua/user/lsp/init.lua +++ b/lua/user/lsp/init.lua @@ -3,4 +3,3 @@ require("user.lsp.mason") require("user.lsp.nullls") require("user.lsp.signature") require("user.lsp.lspsaga") -require("user.lsp.lightbulb") diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 13f7f5a..019f36d 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -152,6 +152,9 @@ return packer.startup(function(use) end, }) + -- UI + use("stevearc/dressing.nvim") + if PACKER_BOOTSTRAP then require("packer").sync() end