Compare commits

..
2 Commits
Author SHA1 Message Date
didas f5b2452a9f feat: Added smartcolumn and todo-comments 2026-08-19 10:31:21 +01:00
didas 78353b3023 feat: Changed theme 2026-08-19 10:31:05 +01:00
4 changed files with 21 additions and 3 deletions
-3
View File
@@ -1,3 +0,0 @@
return {
{ "ellisonleao/gruvbox.nvim", priority = 1000 , config = function() vim.cmd([[colorscheme gruvbox]]) end, opts = ...},
}
+8
View File
@@ -0,0 +1,8 @@
return {
"dasupradyumna/midnight.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd([[colorscheme midnight]])
end,
}
+6
View File
@@ -0,0 +1,6 @@
return {
"m4xshen/smartcolumn.nvim",
opts = {
colorcolumn = { "80", "120" }
}
}
+7
View File
@@ -0,0 +1,7 @@
return {
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim", "folke/trouble.nvim" },
config = function()
require("todo-comments").setup({})
end,
}