with theming and updates

This commit is contained in:
2023-03-16 08:01:27 +01:00
parent 8db28128d4
commit 047c0d2e67
6 changed files with 53 additions and 42 deletions

View File

@@ -4,7 +4,8 @@ return {
name = "catppuccin",
config = function()
require("catppuccin").setup({
flavour = "macchiato"
--flavour = "espresso"
--flavour = "macchiato"
})
end
}

View File

@@ -0,0 +1,3 @@
return {
"neovim/nvim-lspconfig",
}

3
lua/plugins/neoconf.lua Normal file
View File

@@ -0,0 +1,3 @@
return {
"folke/neoconf.nvim",
}

View File

@@ -11,9 +11,8 @@ return {
-- Code action groups
vim.keymap.set("n", "<Leader>a", rt.code_action_group.code_action_group, { buffer = bufnr })
end,
settings = {
["rust-analyzer"] = {
["rust-analyzer"] = {
imports = {
granularity = {
group = "module",
@@ -21,14 +20,18 @@ return {
prefix = "self",
},
cargo = {
allFeatures = true,
buildScripts = {
enable = true,
},
procMacro = {
enable = true,
}
},
procMacro = {
enable = true,
},
--checkOnSave = false,
checkOnSave = {
allFeatures = true,
enable = true
}
},
},
},