summaryrefslogtreecommitdiff
path: root/lua/tjk/plugins.lua
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-05-22 17:06:16 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-05-22 17:06:16 -0500
commite3f222487a57b2f3f995628630cd9ae65c3a210b (patch)
treef1a3c8582ae71d859b2dd6e7c3a55b2f2a30d3f8 /lua/tjk/plugins.lua
parentf83593f430118f0499454f88cbe028c822e760a3 (diff)
downloadnvim-e3f222487a57b2f3f995628630cd9ae65c3a210b.tar.xz
nvim-e3f222487a57b2f3f995628630cd9ae65c3a210b.zip
new super fancy loader more akin to lazy.nvimHEADmaster
Diffstat (limited to 'lua/tjk/plugins.lua')
-rw-r--r--lua/tjk/plugins.lua61
1 files changed, 0 insertions, 61 deletions
diff --git a/lua/tjk/plugins.lua b/lua/tjk/plugins.lua
deleted file mode 100644
index 3feb0bc..0000000
--- a/lua/tjk/plugins.lua
+++ /dev/null
@@ -1,61 +0,0 @@
-vim.cmd.packadd "nvim.undotree"
-vim.cmd.packadd "nvim.difftool"
-
--- https://github.com/m4xshen/autoclose.nvim
-require("autoclose").setup {
- options = { pair_spaces = true },
-}
-
--- TODO native cmp
--- https://github.com/Saghen/blink.cmp
-require("blink-cmp").setup {
- keymap = {
- preset = "super-tab",
- ["<C-k>"] = { "select_prev", "fallback" },
- ["<C-j>"] = { "select_next", "fallback" },
- },
- cmdline = { enabled = false },
-}
-
--- https://github.com/catgoose/nvim-colorizer.lua
-require("colorizer").setup {
- lazy_load = true,
- options = {
- parsers = {
- css = true, -- preset: enables names, hex, rgb, hsl, oklch, css_var
- tailwind = { enable = true, update_names = true, lsp = true }, -- tailwind + lsp context
- xterm = { enable = true }, -- xterm 256-color codes (#xNN, \e[38;5;NNNm)
- xcolor = { enable = true }, -- LaTeX xcolor expressions (e.g. red!30)
- },
- },
-}
-
--- https://git.tjkeller.xyz/minitab.nvim
-require("minitab").setup()
-
--- https://github.com/nvim-treesitter/nvim-treesitter
--- TODO "geigerzaehler/tree-sitter-jinja2", -- adds filetype for htmljinja, not recognized by ts by default. Requires gcc in path
-require("nvim-treesitter.configs").setup {
- highlight = { enable = true, disable = { "yaml", "dockerfile" } },
- --indent = { enable = true }, -- FIXME
-}
-vim.g._ts_force_sync_parsing = true -- #32660
-
--- https://github.com/windwp/nvim-ts-autotag
-require("nvim-ts-autotag").setup {
- per_filetype = { ["html"] = { enable_close = true } },
-}
-
--- https://github.com/HiPhish/rainbow-delimiters.nvim
---require("rainbow-delimiters.setup").setup()
-
--- https://github.com/folke/snacks.nvim
-require("snacks").setup {
- indent = {
- enabled = true,
- only_scope = true,
- animate = { enabled = false },
- scope = { enabled = false },
- },
- quickfile = { enabled = true },
-}