- Housekeeping
This commit is contained in:
Pratik Tripathy
2024-03-09 22:33:19 +05:30
parent b24886c297
commit 359dafd75e
2 changed files with 53 additions and 54 deletions

View File

@@ -1,8 +1,4 @@
return {
{ "tpope/vim-repeat" },
{ "easymotion/vim-easymotion" },
{ "machakann/vim-highlightedyank" },
-- Better surround than tpope/vim-surround
{
"kylechui/nvim-surround",
@@ -32,54 +28,6 @@ return {
opts = {},
},
-- indent guides for Neovim
{
"lukas-reineke/indent-blankline.nvim",
opts = {
indent = { char = "", tab_char = "" },
scope = { enabled = false },
exclude = {
filetypes = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
},
},
main = "ibl",
},
-- Highlights the current level of indentation, and animates the highlighting.
{
"echasnovski/mini.indentscope",
opts = { symbol = "", options = { try_as_border = true } },
init = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"help",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
},
callback = function()
vim.b.miniindentscope_disable = true
end,
})
end,
},
-- Finds and lists all of the TODO, HACK, BUG, etc comment
{
"folke/todo-comments.nvim",