chore(nvim): remove plugins temporarily

I'm removing these temporarily to see how it affects performance.
This commit is contained in:
Oliver Davies 2023-10-08 23:52:11 +01:00
parent d03b4b1bd5
commit 688619a6dd
3 changed files with 0 additions and 53 deletions

View file

@ -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,
}

View file

@ -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",
},
},
}

View file

@ -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>" }