diff options
| author | bh <qn+git@excalibur.computer> | 2025-11-19 19:39:14 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2025-11-19 19:39:14 +0800 |
| commit | 10e476e0f97d0a7c8d359aba270f68066a332583 (patch) | |
| tree | 62fe7fc4693517778d919a207536143464c136cc /lua/plugins/init.lua | |
| parent | 8899689ea8f0db082aaa58968a40146db87c98c6 (diff) | |
Added indents
Diffstat (limited to 'lua/plugins/init.lua')
| -rw-r--r-- | lua/plugins/init.lua | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index d9bf221..c0ce35c 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -1,7 +1,7 @@ -- ~/.config/nvim/lua/plugins/init.lua return { -- LSP - { + { "neovim/nvim-lspconfig", config = function() require("config.lsp")() -- note the () if your lsp.lua returns a function @@ -108,6 +108,15 @@ return { config = require("config.tabs"), }, + { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + ---@module "ibl" + ---@type ibl.config + opts = {}, + config = require("config.indent"), + }, + -- Dashboard { "nvimdev/dashboard-nvim", event = "VimEnter", dependencies = { "nvim-tree/nvim-web-devicons" }, config = require("config.dashboard") }, |
