From f5b2452a9f9aeee41642b098db54f875fc68ed73 Mon Sep 17 00:00:00 2001 From: Diogo Diniz Date: Wed, 19 Aug 2026 10:31:21 +0100 Subject: [PATCH] feat: Added smartcolumn and todo-comments --- nvim/lua/plugins/smartcolumn.lua | 6 ++++++ nvim/lua/plugins/todo-comments.lua | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 nvim/lua/plugins/smartcolumn.lua create mode 100644 nvim/lua/plugins/todo-comments.lua diff --git a/nvim/lua/plugins/smartcolumn.lua b/nvim/lua/plugins/smartcolumn.lua new file mode 100644 index 0000000..fe6f9ab --- /dev/null +++ b/nvim/lua/plugins/smartcolumn.lua @@ -0,0 +1,6 @@ +return { + "m4xshen/smartcolumn.nvim", + opts = { + colorcolumn = { "80", "120" } + } +} diff --git a/nvim/lua/plugins/todo-comments.lua b/nvim/lua/plugins/todo-comments.lua new file mode 100644 index 0000000..1965c77 --- /dev/null +++ b/nvim/lua/plugins/todo-comments.lua @@ -0,0 +1,7 @@ +return { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim", "folke/trouble.nvim" }, + config = function() + require("todo-comments").setup({}) + end, +}