From a6086451c8dce156ff1f9daa5a1495fdc3cc8833 Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Tue, 13 Aug 2024 07:20:48 +0000 Subject: [PATCH] beep --- vim/.vim/lua/config/lsp-google.lua | 2 +- vim/.vim/lua/plugins/base.lua | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/vim/.vim/lua/config/lsp-google.lua b/vim/.vim/lua/config/lsp-google.lua index 695abb5..a301464 100644 --- a/vim/.vim/lua/config/lsp-google.lua +++ b/vim/.vim/lua/config/lsp-google.lua @@ -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 diff --git a/vim/.vim/lua/plugins/base.lua b/vim/.vim/lua/plugins/base.lua index 585af4b..53540e1 100644 --- a/vim/.vim/lua/plugins/base.lua +++ b/vim/.vim/lua/plugins/base.lua @@ -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" },