Migrate config v2 config

This commit is contained in:
Hydroxycarbamide 2023-04-10 22:02:56 +02:00
parent 7bedf3cc3a
commit 0eafc1f5e8
2 changed files with 19 additions and 2 deletions

View file

@ -18,7 +18,7 @@ return {
}, },
-- Set colorscheme to use -- Set colorscheme to use
colorscheme = "astrodark", colorscheme = "catppuccin",
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on -- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = { diagnostics = {
@ -50,7 +50,15 @@ return {
}, },
-- enable servers that you already have installed without mason -- enable servers that you already have installed without mason
servers = { servers = {
-- "pyright" "cssls",
"eslint",
"tailwindcss",
"rust_analyzer",
"tsserver",
"html",
"clangd",
"svelte",
"pyright"
}, },
}, },

View file

@ -9,4 +9,13 @@ return {
-- require("lsp_signature").setup() -- require("lsp_signature").setup()
-- end, -- end,
-- }, -- },
{
"catppuccin/nvim",
as = "catppuccin",
config = function()
require("catppuccin").setup({
flavour = "macchiato"
})
end,
},
} }