summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/plugins/cursorline.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/user/plugins/cursorline.lua')
-rw-r--r--.config/nvim/lua/user/plugins/cursorline.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/nvim/lua/user/plugins/cursorline.lua b/.config/nvim/lua/user/plugins/cursorline.lua
new file mode 100644
index 0000000..3452a95
--- /dev/null
+++ b/.config/nvim/lua/user/plugins/cursorline.lua
@@ -0,0 +1,11 @@
+return {
+ "ya2s/nvim-cursorline",
+ opts = {
+ cursorline = { enable = false }, -- I don't want this plugin fucking with my cursorline
+ cursorword = {
+ enable = true,
+ min_length = 2,
+ hl = { underline = true },
+ }
+ }
+}