diff --git a/projects/leptos.lua b/projects/leptos.lua new file mode 100644 index 0000000..6c13efa --- /dev/null +++ b/projects/leptos.lua @@ -0,0 +1,18 @@ +vim.g.rustaceanvim = { + server = { + default_settings = { + ['rust-analyzer'] = { + cargo = { + features = { + "ssr" + }, + }, + rustfmt = { + overrideCommand = { + "leptosfmt", "--stdin", "--rustfmt" + }, + }, + }, + }, + }, +} diff --git a/projects/text.lua b/projects/text.lua new file mode 100644 index 0000000..5b75d71 --- /dev/null +++ b/projects/text.lua @@ -0,0 +1,3 @@ +vim.cmd('colorscheme quiet') +vim.opt.background = "light" +vim.opt.termguicolors = true