Initial Configurations
This commit is contained in:
parent
01a1ebed38
commit
5c216504bb
15 changed files with 478 additions and 687 deletions
24
lua/plugins/sensible.lua
Normal file
24
lua/plugins/sensible.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
return {
|
||||
-- Easier comments (gc / gcc)
|
||||
{
|
||||
"numToStr/Comment.nvim",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("Comment").setup()
|
||||
end,
|
||||
},
|
||||
-- Actions that work on surrounding context
|
||||
{ "tpope/vim-surround", event = "VeryLazy" },
|
||||
{ "tpope/vim-unimpaired", event = "VeryLazy" },
|
||||
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("todo-comments").setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue