Changing the find and replace function a bit and removing some unecesary pieces.

This commit is contained in:
2024-11-07 20:30:35 -06:00
parent 3039442306
commit 2757219590
6 changed files with 11 additions and 32 deletions

View File

@@ -1,14 +0,0 @@
return {
'smjonas/inc-rename.nvim',
config = function()
require('inc_rename').setup()
end,
keys = {
{
'<leader>rn',
function()
return ':IncRename ' .. vim.fn.expand('<cword>')
end,
},
},
}

View File

@@ -43,17 +43,19 @@ return {
ensure_installed = {
'ansiblels',
'arduino_language_server',
'bashls',
'clangd',
-- 'hadolint', -- Dockerfile linting
'intelephense',
'jdtls',
-- 'jdtls', -- java
'lua_ls',
'marksman',
'marksman', -- markdown
'pylsp',
'rust_analyzer',
-- 'r_language_server',
'ts_ls',
-- 'snyk',
'ts_ls', -- Typscript
-- 'volar', -- Vue
'yamlls',
'volar',
}
}

View File

@@ -156,12 +156,6 @@ return {
require('telescope.builtin').lsp_dynamic_workspace_symbols()
end
},
{
';g',
function()
require('telescope.builtin').grep_string({ search = vim.fn.input('Grep For > ')})
end
},
{
'<leader>rn',
function()