diff --git a/after/plugin/indent-blankline.lua b/after/plugin/indent-blankline.lua deleted file mode 100644 index be9da2c..0000000 --- a/after/plugin/indent-blankline.lua +++ /dev/null @@ -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, -} diff --git a/after/plugin/lualine.lua b/after/plugin/lualine.lua deleted file mode 100644 index 6fb446b..0000000 --- a/after/plugin/lualine.lua +++ /dev/null @@ -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", - }, - }, -} diff --git a/after/plugin/todo-comments.lua b/after/plugin/todo-comments.lua deleted file mode 100644 index 5f51489..0000000 --- a/after/plugin/todo-comments.lua +++ /dev/null @@ -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 { "tt", "TodoTelescope" } -nmap { "tq", "TodoQuickFix" }