diff options
author | Yigit Sever | 2023-12-06 18:57:42 +0300 |
---|---|---|
committer | Yigit Sever | 2023-12-06 18:57:42 +0300 |
commit | 77421f75d21ee86e2a690c7f8b4770849df58b58 (patch) | |
tree | 83daf81d7b6eeb1d0fa683bc55728e0cda6b2f3b /.config/nvim/lua/plugins | |
parent | b5a3acdc10df74bdafc38e8548450e23f791ef38 (diff) | |
download | dotfiles-77421f75d21ee86e2a690c7f8b4770849df58b58.tar.gz dotfiles-77421f75d21ee86e2a690c7f8b4770849df58b58.tar.bz2 dotfiles-77421f75d21ee86e2a690c7f8b4770849df58b58.zip |
nvim: update indent blankline
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r-- | .config/nvim/lua/plugins/indent-blankline.lua | 21 | ||||
-rw-r--r-- | .config/nvim/lua/plugins/lsp.lua | 1 |
2 files changed, 13 insertions, 9 deletions
diff --git a/.config/nvim/lua/plugins/indent-blankline.lua b/.config/nvim/lua/plugins/indent-blankline.lua index 0906298..9d140a6 100644 --- a/.config/nvim/lua/plugins/indent-blankline.lua +++ b/.config/nvim/lua/plugins/indent-blankline.lua | |||
@@ -1,14 +1,19 @@ | |||
1 | return { | 1 | return { |
2 | { | 2 | { |
3 | "lukas-reineke/indent-blankline.nvim", | 3 | "lukas-reineke/indent-blankline.nvim", |
4 | init = function() | 4 | main = "ibl", |
5 | vim.opt.list = true | 5 | opts = {}, |
6 | config = function() | ||
7 | require("ibl").setup { | ||
8 | indent = { | ||
9 | char = "┊", | ||
10 | }, | ||
11 | exclude = { | ||
12 | filetypes = { | ||
13 | "dashboard" | ||
14 | }, | ||
15 | } | ||
16 | } | ||
6 | end, | 17 | end, |
7 | opts = { | ||
8 | show_current_context = true, | ||
9 | char = "┊", | ||
10 | buftype_exclude = {"terminal"}, | ||
11 | filetype_exclude = {"dashboard", "help", "man"} | ||
12 | }, | ||
13 | }, | 18 | }, |
14 | } | 19 | } |
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index 4c56acf..91cdebd 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua | |||
@@ -186,7 +186,6 @@ return { | |||
186 | }, | 186 | }, |
187 | { | 187 | { |
188 | "j-hui/fidget.nvim", | 188 | "j-hui/fidget.nvim", |
189 | tag = "legacy", | ||
190 | event = "VeryLazy", | 189 | event = "VeryLazy", |
191 | opts = { | 190 | opts = { |
192 | text = { | 191 | text = { |