tailwind
This commit is contained in:
parent
ac5f5ee2b3
commit
dad9cad7d0
1 changed files with 13 additions and 6 deletions
19
init.lua
19
init.lua
|
@ -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 = 0
|
opt.pumblend = 15
|
||||||
opt.winblend = 0
|
opt.winblend = 15
|
||||||
opt.mouse = "a"
|
opt.mouse = "a"
|
||||||
opt.cmdheight = 2
|
opt.cmdheight = 2
|
||||||
opt.timeout = true
|
opt.timeout = true
|
||||||
|
@ -203,7 +203,7 @@ require("lazy").setup({
|
||||||
{ "rbtnn/vim-ambiwidth", lazy = false },
|
{ "rbtnn/vim-ambiwidth", lazy = false },
|
||||||
{ "lambdalisue/kensaku-search.vim", lazy = false },
|
{ "lambdalisue/kensaku-search.vim", lazy = false },
|
||||||
{ "lambdalisue/kensaku.vim", lazy = false },
|
{ "lambdalisue/kensaku.vim", lazy = false },
|
||||||
{ "brenoprata10/nvim-highlight-colors", config = true, lazy = false },
|
{ "brenoprata10/nvim-highlight-colors", lazy = false },
|
||||||
|
|
||||||
--disable default plugins
|
--disable default plugins
|
||||||
performance = {
|
performance = {
|
||||||
|
@ -528,7 +528,7 @@ for _, language in ipairs({ "typescript", "javascript" }) do
|
||||||
type = "pwa-node",
|
type = "pwa-node",
|
||||||
request = "launch",
|
request = "launch",
|
||||||
name = "Launch Current File (pwa-node)",
|
name = "Launch Current File (pwa-node)",
|
||||||
cwd = "${workspaceFolder}", -- vim.fn.getcwd(),
|
cwd = "${workspaceFolder}",
|
||||||
args = { "${file}" },
|
args = { "${file}" },
|
||||||
sourceMaps = true,
|
sourceMaps = true,
|
||||||
protocol = "inspector",
|
protocol = "inspector",
|
||||||
|
@ -620,10 +620,10 @@ cmp.setup({
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
completion = cmp.config.window.bordered({
|
completion = cmp.config.window.bordered({
|
||||||
border = "none",
|
border = "single",
|
||||||
}),
|
}),
|
||||||
documentation = cmp.config.window.bordered({
|
documentation = cmp.config.window.bordered({
|
||||||
border = "none",
|
border = "single",
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -727,6 +727,13 @@ require("colorful-winsep").setup({
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
--nvim-highlight-colors
|
||||||
|
require("nvim-highlight-colors").setup({
|
||||||
|
render = "background",
|
||||||
|
enable_named_colors = true,
|
||||||
|
enable_tailwind = true,
|
||||||
|
})
|
||||||
|
|
||||||
--nvim-hlslens
|
--nvim-hlslens
|
||||||
require("hlslens").setup()
|
require("hlslens").setup()
|
||||||
local kopts = { noremap = true, silent = true }
|
local kopts = { noremap = true, silent = true }
|
||||||
|
|
Loading…
Reference in a new issue