aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2026-04-04 14:53:20 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2026-04-04 14:53:20 -0400
commit35fc70735c2563de7dbbc6c4bdff3e91f2f8957c (patch)
treeb1563d7a4a86d33d12a7fcca2a6b74c2b67eff07
parente3962fcb430e97cf4205a46a9ed503fd3f80932d (diff)
Remove lualine and nabla plugin config
-rw-r--r--TODO.md17
-rw-r--r--nvim/lua/plugins/lualine.lua11
-rw-r--r--nvim/lua/plugins/nabla.lua24
3 files changed, 0 insertions, 52 deletions
diff --git a/TODO.md b/TODO.md
deleted file mode 100644
index c4275ac..0000000
--- a/TODO.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# TODO
-
-* nvim
- * [ ] add tex/markdown ls
- * [ ] configure cmp-pandoc
- * [ ] configure nabla
- * [ ] install folke/todo-comments.nvim
- * [ ] adjust nvim statusline
- * [ ] try nvim-neo-tree/neo-tree.nvim
- * [ ] try ThePrimeagen/harpoon
- * [ ] config sql ls
- * [](https://github.com/joe-re/sql-language-server)
- * [ ] add quickfix telescope binding
- * [ ] add quickfix binding
-
-* newsboat
- * [ ] upload config
diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua
deleted file mode 100644
index a73c619..0000000
--- a/nvim/lua/plugins/lualine.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-return {
- 'nvim-lualine/lualine.nvim',
- dependencies = { 'nvim-tree/nvim-web-devicons' },
- enabled = false,
- opts = {
- options = {
- theme = 'auto',
- globalstatus = true,
- },
- },
-}
diff --git a/nvim/lua/plugins/nabla.lua b/nvim/lua/plugins/nabla.lua
deleted file mode 100644
index 2c48f6c..0000000
--- a/nvim/lua/plugins/nabla.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-return {
- 'jbyuki/nabla.nvim',
- enabled = false,
- dependencies = {
- 'nvim-treesitter/nvim-treesitter'
- },
- ft = { 'markdown', 'pandoc', 'rmd' },
- keys = {
- {
- "<Leader>=p",
- function()
- require('nabla').popup()
- end,
- desc = "Popup Nabla equation preview"
- },
- {
- "<Leader>==",
- function()
- require('nabla').toggle_virt()
- end,
- desc = "Toggle Nabla equation preview for the entire buffer"
- }
- }
-}