summaryrefslogtreecommitdiff
path: root/lua/tjk
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-06-06 10:30:13 -0500
committerTim Keller <tjk@tjkeller.xyz>2025-06-06 10:30:13 -0500
commit52840000c63f6adc7109fbe00ef8dd0fd0b7c5c6 (patch)
tree2faa5c5794ff2fb3455ee02bf22692b59c241d0b /lua/tjk
parent86a296bd9ce9f0b8e928a60bdfad37801310d7f0 (diff)
downloadnvim-52840000c63f6adc7109fbe00ef8dd0fd0b7c5c6.tar.xz
nvim-52840000c63f6adc7109fbe00ef8dd0fd0b7c5c6.zip
use snacks.nvim plugin for indent instead of indent-blankline. use snacks quickfile
Diffstat (limited to 'lua/tjk')
-rw-r--r--lua/tjk/plugins/indentblankline.lua8
-rw-r--r--lua/tjk/plugins/snacks.lua15
2 files changed, 15 insertions, 8 deletions
diff --git a/lua/tjk/plugins/indentblankline.lua b/lua/tjk/plugins/indentblankline.lua
deleted file mode 100644
index 826f1ae..0000000
--- a/lua/tjk/plugins/indentblankline.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-return {
- "lukas-reineke/indent-blankline.nvim",
- enabled = vim.opt.termguicolors._value,
- main = "ibl",
- opts = {
- scope = { enabled = false };
- }
-}
diff --git a/lua/tjk/plugins/snacks.lua b/lua/tjk/plugins/snacks.lua
new file mode 100644
index 0000000..434cd68
--- /dev/null
+++ b/lua/tjk/plugins/snacks.lua
@@ -0,0 +1,15 @@
+return {
+ "folke/snacks.nvim",
+ priority = 1000,
+ lazy = false,
+ opts = {
+ indent = {
+ enabled = true,
+ only_scope = true,
+ char = "▏", -- TODO doesn't work
+ animate = { enabled = false },
+ scope = { enabled = false },
+ },
+ quickfile = { enabled = true },
+ },
+}