diff --git a/init.lua b/init.lua index cd6db84..7fb0316 100644 --- a/init.lua +++ b/init.lua @@ -59,4 +59,8 @@ vim.g.mapleader = " " vim.o.clipboard = "unnamedplus" +vim.filetype.add({ + pattern = { [".*/hypr/.*%.conf"] = "hyprlang" }, +}) + require("plugins") diff --git a/lazy-lock.json b/lazy-lock.json index a89ceee..2f6d03c 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -18,7 +18,7 @@ "gitsigns.nvim": { "branch": "main", "commit": "47c8e3e571376b24de62408fd0c9d12f0a9fc0a3" }, "incline.nvim": { "branch": "main", "commit": "16fc9c073e3ea4175b66ad94375df6d73fc114c0" }, "indent-blankline.nvim": { "branch": "master", "commit": "d98f537c3492e87b6dc6c2e3f66ac517528f406f" }, - "lazy.nvim": { "branch": "main", "commit": "4c6479e98ad643cd584e9e7c4095c463e0d810eb" }, + "lazy.nvim": { "branch": "main", "commit": "378bfb465673a747e9e9f966e518063499e20cfe" }, "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" }, "nerdcommenter": { "branch": "master", "commit": "7bb1f72e802a80e37bdda5f6906c69b5a93de1eb" }, "nightfox.nvim": { "branch": "main", "commit": "df75a6a94910ae47854341d6b5a6fd483192c0eb" }, diff --git a/lua/plugins.lua b/lua/plugins.lua index 02b0e7e..e3d717f 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -242,7 +242,8 @@ require("lazy").setup({ "folke/trouble.nvim", dependencies = { "nvim-tree/nvim-web-devicons" }, opts = { - position = "right", + auto_close = true, + win = { position = "right" }, -- your configuration comes here -- or leave it empty to use the default settings -- refer to the configuration section below diff --git a/lua/which-key-config.lua b/lua/which-key-config.lua index 2fd19d3..fba8ab3 100644 --- a/lua/which-key-config.lua +++ b/lua/which-key-config.lua @@ -63,27 +63,19 @@ wk.register({ x = { "Toggle Trouble", x = { - "TroubleToggle", + "Trouble diagnostics toggle", "Open Trouble", }, - w = { - "TroubleToggle workspace_diagnostics", - "", - }, - d = { - "TroubleToggle document_diagnostics", - "", - }, q = { - "TroubleToggle quickfix", + "Trouble quickfix toggle", "", }, l = { - "TroubleToggle loclist", + "Trouble loclist toggle", "", }, r = { - "TroubleToggle lsp_references", + "Trouble lsp_references toggle", "", }, },