Add file operations
This commit is contained in:
parent
e282ec4d44
commit
70945bff5d
14
init.lua
14
init.lua
|
|
@ -744,6 +744,20 @@ require('lazy').setup({
|
|||
end,
|
||||
},
|
||||
|
||||
{ -- File operations (rename, move etc...) improvements for auto renaming imports
|
||||
'antosha417/nvim-lsp-file-operations',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
-- Uncomment whichever supported plugin(s) you use
|
||||
-- "nvim-tree/nvim-tree.lua",
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
-- "simonmclean/triptych.nvim"
|
||||
},
|
||||
config = function()
|
||||
require('lsp-file-operations').setup()
|
||||
end,
|
||||
},
|
||||
|
||||
{ -- Autoformat
|
||||
'stevearc/conform.nvim',
|
||||
event = { 'BufWritePre' },
|
||||
|
|
|
|||
Loading…
Reference in New Issue