Initial Configurations

This commit is contained in:
dubnde 2023-08-20 11:00:16 +01:00
parent 01a1ebed38
commit 5c216504bb
15 changed files with 478 additions and 687 deletions

24
lua/plugins/sensible.lua Normal file
View 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,
},
}