update lol
This commit is contained in:
parent
75022b92c5
commit
d969adccaa
8
init.lua
8
init.lua
@ -34,9 +34,12 @@ require('lazy').setup({
|
|||||||
'j-hui/fidget.nvim',
|
'j-hui/fidget.nvim',
|
||||||
tag = 'legacy',
|
tag = 'legacy',
|
||||||
opts = {
|
opts = {
|
||||||
|
align = {
|
||||||
|
bottom = false,
|
||||||
|
},
|
||||||
window = {
|
window = {
|
||||||
blend = 0,
|
blend = 0,
|
||||||
border = "rounded",
|
-- border = "rounded",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -325,7 +328,8 @@ local servers = {
|
|||||||
-- clangd = {},
|
-- clangd = {},
|
||||||
-- gopls = {},
|
-- gopls = {},
|
||||||
-- pyright = {},
|
-- pyright = {},
|
||||||
-- rust_analyzer = {},
|
rust_analyzer = {},
|
||||||
|
gopls = {},
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
-- hls = {},
|
-- hls = {},
|
||||||
html = { provideFormatter = false },
|
html = { provideFormatter = false },
|
||||||
|
@ -45,3 +45,13 @@ return {
|
|||||||
Group.new("HoverBorder", colors.yellow, colors.none, styles.NONE)
|
Group.new("HoverBorder", colors.yellow, colors.none, styles.NONE)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- SolarizedLight = {
|
||||||
|
-- 'maxmx03/solarized.nvim',
|
||||||
|
-- lazy = false,
|
||||||
|
-- priority = 1000,
|
||||||
|
-- config = function()
|
||||||
|
-- vim.o.background = 'light'
|
||||||
|
-- vim.cmd.colorscheme 'solarized'
|
||||||
|
-- end,
|
||||||
|
-- }
|
||||||
|
@ -6,8 +6,7 @@ return {
|
|||||||
require("null-ls").builtins.formatting.black.with({
|
require("null-ls").builtins.formatting.black.with({
|
||||||
extra_args = { "--line-length=80" }
|
extra_args = { "--line-length=80" }
|
||||||
}),
|
}),
|
||||||
require("null-ls").builtins.formatting.prettierd,
|
require("null-ls").builtins.formatting.prettierd
|
||||||
require("null-ls").builtins.formatting.fourmolu
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
return {
|
return {
|
||||||
"xiyaowong/transparent.nvim",
|
"xiyaowong/transparent.nvim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
opts = {},
|
opts = {
|
||||||
|
extra_groups = {
|
||||||
|
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
|
||||||
|
"NvimTreeNormal" -- NvimTree
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user