diff options
Diffstat (limited to 'lua/config/plugins')
-rw-r--r-- | lua/config/plugins/formatting.lua | 9 | ||||
-rw-r--r-- | lua/config/plugins/fuzzy.lua | 9 | ||||
-rw-r--r-- | lua/config/plugins/ui.lua | 12 |
3 files changed, 29 insertions, 1 deletions
diff --git a/lua/config/plugins/formatting.lua b/lua/config/plugins/formatting.lua index 9563905..6efe5d2 100644 --- a/lua/config/plugins/formatting.lua +++ b/lua/config/plugins/formatting.lua @@ -10,6 +10,15 @@ return { lua = { "stylua" }, nix = { "nixfmt" }, rust = { "rustfmt", lsp_format = "fallback" }, + + json = { "biome" }, + jsonc = { "biome" }, + javascript = { "biome" }, + javascriptreact = { "biome" }, + ["javascript.jsx"] = { "biome" }, + typescript = { "biome" }, + typescriptreact = { "biome" }, + ["typescript.jsx"] = { "biome" }, }, }) diff --git a/lua/config/plugins/fuzzy.lua b/lua/config/plugins/fuzzy.lua index fb3cd60..9bab351 100644 --- a/lua/config/plugins/fuzzy.lua +++ b/lua/config/plugins/fuzzy.lua @@ -14,7 +14,14 @@ return { "fzf-lua", event = "DeferredUIEnter", after = function(_) - require("fzf-lua").setup() + require("fzf-lua").setup({ + keymap = { + fzf = { + ["tab"] = "down", + ["shift-tab"] = "up", + }, + }, + }) end, keys = { diff --git a/lua/config/plugins/ui.lua b/lua/config/plugins/ui.lua index 19da163..e552f0e 100644 --- a/lua/config/plugins/ui.lua +++ b/lua/config/plugins/ui.lua @@ -10,6 +10,18 @@ return { }, { + "lualine.nvim", + event = "DeferredUIEnter", + after = function(_) + require("lualine").setup({ + options = { + theme = "catppuccin", + }, + }) + end, + }, + + { "noice.nvim", event = "DeferredUIEnter", after = function(_) |