mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
update
This commit is contained in:
parent
30e639eee3
commit
369ded0f47
4 changed files with 23 additions and 21 deletions
|
@ -23,6 +23,7 @@
|
||||||
"mason-null-ls.nvim": { "branch": "main", "commit": "ae0c5fa57468ac65617f1bf821ba0c3a1e251f0c" },
|
"mason-null-ls.nvim": { "branch": "main", "commit": "ae0c5fa57468ac65617f1bf821ba0c3a1e251f0c" },
|
||||||
"mason.nvim": { "branch": "main", "commit": "d66c60e17dd6fd8165194b1d14d21f7eb2c1697a" },
|
"mason.nvim": { "branch": "main", "commit": "d66c60e17dd6fd8165194b1d14d21f7eb2c1697a" },
|
||||||
"mini.animate": { "branch": "main", "commit": "230140aa0b06af87c9d345573aab1aaf50d8b539" },
|
"mini.animate": { "branch": "main", "commit": "230140aa0b06af87c9d345573aab1aaf50d8b539" },
|
||||||
|
"mini.indentscope": { "branch": "main", "commit": "f60e9b51a6214c73a170ffc5445ce91560981031" },
|
||||||
"neoscroll.nvim": { "branch": "master", "commit": "4bc0212e9f2a7bc7fe7a6bceb15b33e39f0f41fb" },
|
"neoscroll.nvim": { "branch": "master", "commit": "4bc0212e9f2a7bc7fe7a6bceb15b33e39f0f41fb" },
|
||||||
"null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" },
|
"null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" },
|
||||||
"nvim-autopairs": { "branch": "master", "commit": "de4f7138a68d5d5063170f2182fd27faf06b0b54" },
|
"nvim-autopairs": { "branch": "master", "commit": "de4f7138a68d5d5063170f2182fd27faf06b0b54" },
|
||||||
|
|
|
@ -18,25 +18,25 @@ return {
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- {
|
{
|
||||||
-- "echasnovski/mini.indentscope",
|
"echasnovski/mini.indentscope",
|
||||||
-- version = false, -- wait till new 0.7.0 release to put it back on semver
|
version = false, -- wait till new 0.7.0 release to put it back on semver
|
||||||
-- event = "BufReadPre",
|
event = "BufReadPre",
|
||||||
-- opts = {
|
opts = {
|
||||||
-- -- symbol = "▏",
|
-- symbol = "▏",
|
||||||
-- symbol = "│",
|
symbol = "│",
|
||||||
-- options = { try_as_border = true },
|
options = { try_as_border = true },
|
||||||
-- },
|
},
|
||||||
-- config = function(_, opts)
|
config = function(_, opts)
|
||||||
-- vim.api.nvim_create_autocmd("FileType", {
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
-- pattern = { "help", "alpha", "dashboard", "NvimTree", "Trouble", "lazy", "mason" },
|
pattern = { "help", "alpha", "dashboard", "NvimTree", "Trouble", "lazy", "mason" },
|
||||||
-- callback = function()
|
callback = function()
|
||||||
-- vim.b.miniindentscope_disable = true
|
vim.b.miniindentscope_disable = true
|
||||||
-- end,
|
end,
|
||||||
-- })
|
})
|
||||||
-- require("mini.indentscope").setup(opts)
|
require("mini.indentscope").setup(opts)
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
-- {
|
-- {
|
||||||
-- "gbprod/yanky.nvim",
|
-- "gbprod/yanky.nvim",
|
||||||
-- event = "InsertEnter",
|
-- event = "InsertEnter",
|
||||||
|
|
|
@ -197,7 +197,8 @@ return {
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
event = "BufRead",
|
event = "BufRead",
|
||||||
config = function()
|
config = function()
|
||||||
require("user.indentline")
|
-- require("user.indentline")
|
||||||
|
require("ibl").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
-- for Speed up loading Lua modules in Neovim to improve startup time.
|
-- for Speed up loading Lua modules in Neovim to improve startup time.
|
||||||
|
|
|
@ -60,7 +60,7 @@ vim.wo.colorcolumn = "99999"
|
||||||
indent_blankline.setup({
|
indent_blankline.setup({
|
||||||
-- show_end_of_line = true,
|
-- show_end_of_line = true,
|
||||||
-- space_char_blankline = " ",
|
-- space_char_blankline = " ",
|
||||||
show_current_context = true,
|
-- show_current_context = true,
|
||||||
-- show_current_context_start = true,
|
-- show_current_context_start = true,
|
||||||
-- char_highlight_list = {
|
-- char_highlight_list = {
|
||||||
-- "IndentBlanklineIndent1",
|
-- "IndentBlanklineIndent1",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue