Refactoring

This commit is contained in:
Thomas Naderer
2024-12-25 10:36:21 +01:00
parent 91dbeda101
commit 2dcd9c7e67
4 changed files with 3 additions and 35 deletions

View File

@@ -84,13 +84,6 @@ require('packer').startup(function(use)
use 'junegunn/fzf.vim'
-- }}}
-- {{{ Todo Comments
use {
"folke/todo-comments.nvim",
requires = "nvim-lua/plenary.nvim",
}
-- }}}
-- {{{ Cool Startup Dashboard
use {
'glepnir/dashboard-nvim',

View File

@@ -1,21 +0,0 @@
require("todo-comments").setup {
signs = true, -- Show icons in the signs column
keywords = {
TODO = { icon = "", color = "info" },
FIXME = { icon = "", color = "error" },
HACK = { icon = "", color = "warning" },
WARN = { icon = "", color = "warning" },
NOTE = { icon = "", color = "hint" },
},
highlight = {
before = "", -- Don't highlight before the keyword
keyword = "wide", -- Highlight the keyword itself
after = "fg", -- Highlight after the keyword
},
search = {
command = "rg", -- Use ripgrep for searching
args = {
"--color=never", "--no-heading", "--with-filename", "--line-number", "--column",
},
},
}

View File

@@ -6,3 +6,4 @@ vim.opt.expandtab = true -- Use spaces instead of tabs
-- Coloscheme
vim.cmd [[colorscheme tokyonight]]
vim.cmd [[set spelllang=en]]