beep
This commit is contained in:
@ -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
|
||||
|
@ -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" },
|
||||
|
Reference in New Issue
Block a user