feat: Initial nvim configs

This commit is contained in:
2026-08-18 21:47:15 +01:00
commit 6bc5875bad
12 changed files with 124 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
return {
{
"saecki/crates.nvim",
ft = { "toml" },
}
}
+3
View File
@@ -0,0 +1,3 @@
return {
{ "ellisonleao/gruvbox.nvim", priority = 1000 , config = function() vim.cmd([[colorscheme gruvbox]]) end, opts = ...},
}
+3
View File
@@ -0,0 +1,3 @@
return {
{ "neovim/nvim-lspconfig" },
}
+9
View File
@@ -0,0 +1,9 @@
return {
{
"https://github.com/nvim-lualine/lualine.nvim",
event = "VeryLazy",
config = function()
require("lualine").setup()
end,
},
}
+9
View File
@@ -0,0 +1,9 @@
return {
{
"https://github.com/windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup()
end,
},
}
+13
View File
@@ -0,0 +1,13 @@
return {
{
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
require("nvim-tree").setup({
filters = {
dotfiles = true,
},
})
end
},
}
+18
View File
@@ -0,0 +1,18 @@
return {
{
"saghen/blink.cmp",
dependencies = {
"saghen/blink.lib",
},
build = function()
require("blink.cmp").build():pwait()
end,
opts = {
keymap = { preset = "default" },
}
},
{
"mrcjkb/rustaceanvim",
ft = { "rust" },
}
}
+6
View File
@@ -0,0 +1,6 @@
return {
{
"https://github.com/farmergreg/vim-lastplace",
event = "BufReadPost",
},
}