Refactoring
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -6,3 +6,4 @@ vim.opt.expandtab = true -- Use spaces instead of tabs
|
||||
-- Coloscheme
|
||||
vim.cmd [[colorscheme tokyonight]]
|
||||
|
||||
vim.cmd [[set spelllang=en]]
|
||||
|
||||
Reference in New Issue
Block a user