diff --git a/chezmoi/dot_config/nvim/lua/aleidk/plugins/ai.lua b/chezmoi/dot_config/nvim/lua/aleidk/plugins/ai.lua index c7afdbe..9969c9c 100644 --- a/chezmoi/dot_config/nvim/lua/aleidk/plugins/ai.lua +++ b/chezmoi/dot_config/nvim/lua/aleidk/plugins/ai.lua @@ -10,7 +10,7 @@ return { config = function() require("copilot").setup({ suggestion = { enabled = false }, - panel = { enabled = false }, + panel = { enabled = true, auto_refresh = true }, }) end, }, diff --git a/chezmoi/dot_config/nvim/lua/aleidk/plugins/flash.lua b/chezmoi/dot_config/nvim/lua/aleidk/plugins/flash.lua deleted file mode 100644 index faf9fa5..0000000 --- a/chezmoi/dot_config/nvim/lua/aleidk/plugins/flash.lua +++ /dev/null @@ -1,25 +0,0 @@ -return { - "folke/flash.nvim", - event = "VeryLazy", - ---@type Flash.Config - opts = { - label = { - rainbow = { - enabled = true, - }, - }, - modes = { - search = { - enabled = false, -- actibable with require("flash").toggle(), - }, - }, - }, - -- stylua: ignore - keys = { - { "s", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" }, - { "S", mode = { "n", "x", "o" }, function() require("flash").treesitter() end, desc = "Flash Treesitter" }, - { "r", mode = "o", function() require("flash").remote() end, desc = "Remote Flash" }, - { "R", mode = { "o", "x" }, function() require("flash").treesitter_search() end, desc = "Treesitter Search" }, - { "", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" }, - }, -} diff --git a/chezmoi/dot_config/nvim/lua/aleidk/plugins/markdown.lua b/chezmoi/dot_config/nvim/lua/aleidk/plugins/markdown.lua index d332a1e..8a53320 100644 --- a/chezmoi/dot_config/nvim/lua/aleidk/plugins/markdown.lua +++ b/chezmoi/dot_config/nvim/lua/aleidk/plugins/markdown.lua @@ -6,6 +6,7 @@ return { -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-tree/nvim-web-devicons" }, -- if you prefer nvim-web-devicons opts = { + file_types = { 'markdown', 'codecompanion' }, sign = { enabled = false, },