Add keymap to delete line with selected word in the file and configure lspkind symbols
This commit is contained in:
parent
ef91f14af8
commit
a9de446ed3
6 changed files with 99 additions and 18 deletions
|
|
@ -1,12 +0,0 @@
|
|||
return {
|
||||
"jose-elias-alvarez/null-ls.nvim",
|
||||
config = function()
|
||||
local null_ls = require("null-ls")
|
||||
null_ls.setup({
|
||||
source = {
|
||||
null_ls.builtins.diagnostics.eslint,
|
||||
null_ls.builtins.completion.spell,
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
7
lua/custom/plugins/todo.lua
Normal file
7
lua/custom/plugins/todo.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"folke/todo-comments.nvim",
|
||||
requires = "nvim-lua/plenary.nvim",
|
||||
config = function()
|
||||
require("todo-comments").setup()
|
||||
end
|
||||
}
|
||||
6
lua/custom/plugins/ts-autotag.lua
Normal file
6
lua/custom/plugins/ts-autotag.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"windwp/nvim-ts-autotag",
|
||||
config = function()
|
||||
require("nvim-ts-autotag").setup()
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue