start a new nvim config from scratch

This commit is contained in:
2025-11-14 22:49:45 -05:00
parent 158937509c
commit 2c2804273c
11 changed files with 219 additions and 0 deletions

14
lua/plugins/kanagawa.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
"rebelot/kanagawa.nvim", opt = {},
config = function()
require("kanagawa").setup({
compile = true,
transparent = true
});
vim.cmd("colorscheme kanagawa");
end,
build = function()
vim.cmd("KanagawaCompile"); -- this line fail at first install
end,
}

View File

@@ -0,0 +1,6 @@
return {
'nvim-mini/mini.statusline', version = "",
opts={},
}

11
lua/plugins/oil.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
'stevearc/oil.nvim',
---@module 'oil'
---@type oil.SetupOpts
opts = {},
-- Optional dependencies
dependencies = { { "nvim-mini/mini.icons", opts = {} } },
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
lazy = false,
}

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

@@ -0,0 +1,3 @@
return {
"tpope/vim-sleuth"
}