start a new nvim config from scratch
This commit is contained in:
14
lua/plugins/kanagawa.lua
Normal file
14
lua/plugins/kanagawa.lua
Normal 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,
|
||||
}
|
||||
6
lua/plugins/mini-statusline.lua
Normal file
6
lua/plugins/mini-statusline.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
|
||||
'nvim-mini/mini.statusline', version = "",
|
||||
opts={},
|
||||
|
||||
}
|
||||
11
lua/plugins/oil.lua
Normal file
11
lua/plugins/oil.lua
Normal 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
3
lua/plugins/sleuth.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
"tpope/vim-sleuth"
|
||||
}
|
||||
Reference in New Issue
Block a user