From 5cd3231464d44f6b8ad1df8900a0f6bbf3180590 Mon Sep 17 00:00:00 2001 From: Daryl Ronningen Date: Sat, 9 Jul 2022 13:25:02 -0700 Subject: [PATCH] added dressing --- init.lua | 1 + lua/user/dressing.lua | 6 ++++++ lua/user/keymaps.lua | 3 --- lua/user/lsp/init.lua | 1 - lua/user/plugins.lua | 3 +++ 5 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 lua/user/dressing.lua 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