chore(nvim): remove plugins temporarily
I'm removing these temporarily to see how it affects performance.
This commit is contained in:
parent
d03b4b1bd5
commit
688619a6dd
|
@ -1,12 +0,0 @@
|
||||||
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.opt.list = true
|
|
||||||
|
|
||||||
vim.api.nvim_set_hl(0, "IndentBlankLineChar", { fg = "#2F313C" })
|
|
||||||
|
|
||||||
indent_blankline.setup {
|
|
||||||
show_end_of_line = true,
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
require("lualine").setup {
|
|
||||||
options = {
|
|
||||||
component_separators = { left = "", right = "" },
|
|
||||||
extensions = { "fzf", "quickfix" },
|
|
||||||
icons_enabled = false,
|
|
||||||
section_separators = { left = "", right = "" },
|
|
||||||
theme = "catppuccin",
|
|
||||||
},
|
|
||||||
|
|
||||||
sections = {
|
|
||||||
lualine_c = {
|
|
||||||
"lsp_progress",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
local status_ok, todo_comments = pcall(require, "todo-comments")
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
todo_comments.setup {}
|
|
||||||
|
|
||||||
local nmap = require("opdavies.keymap").nmap
|
|
||||||
|
|
||||||
nmap {
|
|
||||||
"[t",
|
|
||||||
function()
|
|
||||||
todo_comments.jump_prev()
|
|
||||||
end,
|
|
||||||
{ desc = "Previous todo comment" },
|
|
||||||
}
|
|
||||||
nmap {
|
|
||||||
"]t",
|
|
||||||
function()
|
|
||||||
todo_comments.jump_next()
|
|
||||||
end,
|
|
||||||
{ desc = "Next todo comment" },
|
|
||||||
}
|
|
||||||
|
|
||||||
nmap { "<leader>tt", "<cmd>TodoTelescope<cr>" }
|
|
||||||
nmap { "<leader>tq", "<cmd>TodoQuickFix<cr>" }
|
|
Reference in a new issue