update lol

This commit is contained in:
Lucas Barbieri 2023-09-07 18:42:03 -03:00
parent 75022b92c5
commit d969adccaa
4 changed files with 23 additions and 5 deletions

View File

@ -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 },

View File

@ -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,
-- }

View File

@ -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

View File

@ -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
},
},
} }