]> src.twobees.de Git - dotfiles.git/blobdiff - stow/nvim/.config/nvim/init.lua
follow upstream changes for indent-blankline
[dotfiles.git] / stow / nvim / .config / nvim / init.lua
index 66c87ef37f590ecb033759c052039d50c5dc2d9f..c02802832b5f829ddc8c68d0395079fb313b65ef 100644 (file)
@@ -103,12 +103,8 @@ require('lazy').setup({
   {
     -- Add indentation guides even on blank lines
     'lukas-reineke/indent-blankline.nvim',
-    -- Enable `lukas-reineke/indent-blankline.nvim`
-    -- See `:help indent_blankline.txt`
-    opts = {
-      char = '┊',
-      show_trailing_blankline_indent = false,
-    },
+    main = "ibl",
+    opts = { },
   },
 
   -- "gc" to comment visual regions/lines
@@ -520,6 +516,8 @@ prettier.setup({
 })
 
 vim.opt.diffopt = vim.opt.diffopt + "vertical"
+vim.opt.cursorline = true
+vim.opt.hlsearch = true
 
 -- The line beneath this is called `modeline`. See `:help modeline`
 -- vim: ts=2 sts=2 sw=2 et