feat: update nvim
This commit is contained in:
10
lua/plugins/catppuccin.lua
Normal file
10
lua/plugins/catppuccin.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
lazy = true,
|
||||
name = "catppuccin",
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "macchiato"
|
||||
})
|
||||
end
|
||||
}
|
6
lua/plugins/core.lua
Normal file
6
lua/plugins/core.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "catppuccin"
|
||||
}
|
||||
}
|
8
lua/plugins/crates.lua
Normal file
8
lua/plugins/crates.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
return {
|
||||
'saecki/crates.nvim',
|
||||
tag = 'v0.3.0',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
config = function()
|
||||
require('crates').setup()
|
||||
end,
|
||||
}
|
4
lua/plugins/neorg.lua
Normal file
4
lua/plugins/neorg.lua
Normal file
@@ -0,0 +1,4 @@
|
||||
return {
|
||||
"nvim-neorg/neorg",
|
||||
ft = "norg"
|
||||
}
|
@@ -7,7 +7,7 @@ return {
|
||||
return {
|
||||
sources = {
|
||||
nls.builtins.formatting.terraform_fmt,
|
||||
nls.builtins.formatting.rustfmt,
|
||||
--nls.builtins.formatting.rustfmt,
|
||||
nls.builtins.formatting.yamlfmt,
|
||||
nls.builtins.formatting.deno_fmt.with({
|
||||
filetypes = { "markdown" }
|
||||
|
Reference in New Issue
Block a user