This commit is contained in:
2026-07-16 21:31:20 +02:00
parent 3f4f5e47d8
commit 7ec4793c19
6 changed files with 16 additions and 10 deletions

View File

@ -6,4 +6,5 @@ require("rose-pine").setup()
-- vim.g.melange_enable_font_variants = 0 -- disable font variants
-- require("lush") -- make sure Lush is installed
-- require("melange.build").build() -- Compile to vimscript
-- vim.cmd.colorscheme("rose-pine")
vim.cmd.colorscheme("melange")

View File

@ -5,6 +5,7 @@ local conform = require("conform")
conform.setup({
formatters_by_ft = {
c = { "uncrustify" },
python = { "ruff" }
},
format_on_save = {
-- These options will be passed to conform.format()

View File

@ -6,7 +6,7 @@ require("fidget").setup()
vim.lsp.enable({ 'lua_ls' })
vim.lsp.enable({ 'clangd' })
vim.lsp.enable({ 'spade_ls' })
-- vim.lsp.enable({ 'metals' })
vim.lsp.enable({ 'pyright' })
vim.lsp.config("rust_analyzer", {
settings = {

View File

@ -62,7 +62,8 @@ local languages =
"vimdoc",
"yaml",
"wgsl",
"spade"
"spade",
"scala"
}
ts.install(languages):wait(300000)