this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] add indentblankline

+12
+1
nvim/init.lua
··· 18 18 require "plugins.whichkey" 19 19 require "plugins.illuminate" 20 20 require "plugins.notify" 21 + require "plugins.indentblankline"
+1
nvim/lua/core/plugins.lua
··· 57 57 use "goolord/alpha-nvim" 58 58 use "folke/which-key.nvim" 59 59 use "rcarriga/nvim-notify" 60 + use "lukas-reineke/indent-blankline.nvim" 60 61 61 62 -- Terminal 62 63 use {
+10
nvim/lua/plugins/indentblankline.lua
··· 1 + local ok, indent = pcall(require, "indent_blankline") 2 + if not ok then 3 + vim.notify("no indent_backline") 4 + return 5 + end 6 + 7 + indent.setup { 8 + show_current_context = true, 9 + -- show_current_context_start = true, 10 + }