mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-04 20:29:08 -04:00
Migrate config v2 config
This commit is contained in:
parent
7bedf3cc3a
commit
0eafc1f5e8
2 changed files with 19 additions and 2 deletions
12
init.lua
12
init.lua
|
@ -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"
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue