This commit is contained in:
Christian Nieves
2024-08-13 07:20:48 +00:00
parent 0202fcc32c
commit a6086451c8
2 changed files with 18 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function M.setup(capabilities)
local first_fire = vim.b["is_cider_lsp_attached"] == "no"
vim.b["is_cider_lsp_attached"] = "yes"
if first_fire then
vim.notify("CiderLSP attached", "info")
vim.notify("CiderLSP attached")
require("lualine").refresh()
end
end

View File

@ -2,6 +2,23 @@ local use_google = require("utils").use_google
local buf_too_large = require("utils").buf_too_large
return {
{
"MagicDuck/grug-far.nvim",
config = function()
require("grug-far").setup({
-- search and replace engines configuration
engines = {
-- see https://github.com/BurntSushi/ripgrep
ripgrep = {
-- ripgrep executable to use, can be a different path if you need to configure
path = "rg",
extraArgs = "--.",
},
},
})
end,
},
{
"shellRaining/hlchunk.nvim",
event = { "BufReadPre", "BufNewFile" },