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',
tag = 'legacy',
opts = {
align = {
bottom = false,
},
window = {
blend = 0,
border = "rounded",
-- border = "rounded",
},
},
},
@ -325,7 +328,8 @@ local servers = {
-- clangd = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},
rust_analyzer = {},
gopls = {},
-- tsserver = {},
-- hls = {},
html = { provideFormatter = false },

View File

@ -45,3 +45,13 @@ return {
Group.new("HoverBorder", colors.yellow, colors.none, styles.NONE)
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({
extra_args = { "--line-length=80" }
}),
require("null-ls").builtins.formatting.prettierd,
require("null-ls").builtins.formatting.fourmolu
require("null-ls").builtins.formatting.prettierd
}
}
end

View File

@ -1,5 +1,10 @@
return {
"xiyaowong/transparent.nvim",
lazy = false,
opts = {},
opts = {
extra_groups = {
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
"NvimTreeNormal" -- NvimTree
},
},
}