hlchunk.nvim

This commit is contained in:
Rikuoh Tsujitani 2023-12-30 08:06:09 +09:00
parent 4608c0ad21
commit 71eb64c562
Signed by: riq0h
GPG key ID: 010F09DEA298C717

View file

@ -28,8 +28,8 @@ opt.showtabline = 1
opt.laststatus = 3 opt.laststatus = 3
opt.ambiwidth = "single" opt.ambiwidth = "single"
opt.confirm = true opt.confirm = true
opt.pumblend = 15 opt.pumblend = 0
opt.winblend = 15 opt.winblend = 0
opt.mouse = "a" opt.mouse = "a"
opt.cmdheight = 2 opt.cmdheight = 2
opt.timeout = true opt.timeout = true
@ -185,19 +185,7 @@ require("lazy").setup({
{ "andymass/vim-matchup", event = "VeryLazy" }, { "andymass/vim-matchup", event = "VeryLazy" },
{ "lambdalisue/suda.vim", cmd = { "SudaWrite", "SudaRead" } }, { "lambdalisue/suda.vim", cmd = { "SudaWrite", "SudaRead" } },
{ "jghauser/mkdir.nvim", event = "ModeChanged" }, { "jghauser/mkdir.nvim", event = "ModeChanged" },
{ { "shellRaining/hlchunk.nvim", config = true, event = "UIEnter" },
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
opts = function(_, opts)
return require("indent-rainbowline").make_opts(opts, {
color_transparency = 0.24,
})
end,
dependencies = {
"TheGLander/indent-rainbowline.nvim",
event = "VeryLazy",
},
},
{ "kevinhwang91/nvim-hlslens", event = "VeryLazy" }, { "kevinhwang91/nvim-hlslens", event = "VeryLazy" },
{ "numToStr/Comment.nvim", config = true, event = "VeryLazy" }, { "numToStr/Comment.nvim", config = true, event = "VeryLazy" },
{ "rhysd/clever-f.vim", event = "VeryLazy" }, { "rhysd/clever-f.vim", event = "VeryLazy" },
@ -637,10 +625,10 @@ cmp.setup({
window = { window = {
completion = cmp.config.window.bordered({ completion = cmp.config.window.bordered({
border = "single", border = "none",
}), }),
documentation = cmp.config.window.bordered({ documentation = cmp.config.window.bordered({
border = "single", border = "none",
}), }),
}, },
@ -750,7 +738,7 @@ require("colorful-winsep").setup({
--nvim-highlight-colors --nvim-highlight-colors
require("nvim-highlight-colors").setup({ require("nvim-highlight-colors").setup({
render = "background", render = "background",
enable_named_colors = true, enable_named_colors = false,
enable_tailwind = true, enable_tailwind = true,
}) })