Skip to content

Commit 674d500

Browse files
indent line styling
1 parent f3ec452 commit 674d500

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

lazy-lock.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
99
"gitsigns.nvim": { "branch": "main", "commit": "17ab794b6fce6fce768430ebc925347e349e1d60" },
1010
"gruvbox-material": { "branch": "master", "commit": "e69dbfe66a228191d257e2b19fe11cbd3002a6a2" },
11+
"indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" },
1112
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
1213
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
1314
"lualine.nvim": { "branch": "master", "commit": "482ae358c67aec2a4939d68a1a4fe4c8064ccd16" },
@@ -19,6 +20,7 @@
1920
"nui.nvim": { "branch": "main", "commit": "8d3bce9764e627b62b07424e0df77f680d47ffdb" },
2021
"nvim-autopairs": { "branch": "master", "commit": "84a81a7d1f28b381b32acf1e8fe5ff5bef4f7968" },
2122
"nvim-cmp": { "branch": "main", "commit": "059e89495b3ec09395262f16b1ad441a38081d04" },
23+
"nvim-lint": { "branch": "master", "commit": "81e8ba7655cc4395b1092ef4e1b6e83f54cd54ad" },
2224
"nvim-lspconfig": { "branch": "master", "commit": "3e873195f501b1e02d9fd7e5af5cbe74fc2f98c1" },
2325
"nvim-treesitter": { "branch": "master", "commit": "523a9e148919f58eb5a013f76787e57696e00c93" },
2426
"nvim-web-devicons": { "branch": "master", "commit": "4c3a5848ee0b09ecdea73adcd2a689190aeb728c" },

lua/sld/lazy.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ require('lazy').setup({
769769
require 'sld.tree',
770770
require 'sld.lualine',
771771
require 'sld.autopairs',
772+
require 'sld.lint',
773+
require 'sld.indent_line',
772774
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
773775
-- This is the easiest way to modularize your config.
774776
--

lua/sld/style.lua

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ require('gruvbox-material').setup {
1717
signs = {
1818
highlight = true, -- whether to highlight signs
1919
},
20-
customize = funtion(str_group, opt_table) {},
21-
-- configuration accepts
20+
-- customize = funtion(str_group, opt_table) {},
2221
}
2322

2423
require('lualine').setup {
@@ -62,3 +61,9 @@ require('lualine').setup {
6261
inactive_winbar = {},
6362
extensions = {},
6463
}
64+
65+
require('ibl').setup {
66+
indent = {
67+
char = '',
68+
},
69+
}

0 commit comments

Comments
 (0)