Switch to nvchad.
This commit is contained in:
parent
4ffa1ed610
commit
dae4bd3581
21 changed files with 253 additions and 2 deletions
4
_unused/astronvim/lua/user/plugins/init.lua
Normal file
4
_unused/astronvim/lua/user/plugins/init.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
{ "goolord/alpha-nvim", enabled = false },
|
||||
{ "rebelot/heirline.nvim", enabled = false },
|
||||
}
|
23
_unused/astronvim/lua/user/plugins/lualine.lua
Normal file
23
_unused/astronvim/lua/user/plugins/lualine.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
options = {
|
||||
component_separators = '',
|
||||
icons_enabled = true,
|
||||
section_separators = '',
|
||||
theme = "powerline",
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { { "filename", file_status = true, path = 1 } },
|
||||
lualine_c = { { "branch", icon = "" } },
|
||||
lualine_x = { "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
tabline = {
|
||||
lualine_a = { "buffers" },
|
||||
},
|
||||
},
|
||||
}
|
3
_unused/astronvim/lua/user/plugins/monokai.lua
Normal file
3
_unused/astronvim/lua/user/plugins/monokai.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"tanvirtin/monokai.nvim",
|
||||
}
|
24
_unused/astronvim/lua/user/plugins/neotree.lua
Normal file
24
_unused/astronvim/lua/user/plugins/neotree.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
opts = {
|
||||
close_if_last_window = false,
|
||||
sort_case_insensitive = true,
|
||||
window = {
|
||||
position = "left",
|
||||
auto_expand_width = true,
|
||||
mappings = {
|
||||
["<bs>"] = "close_node",
|
||||
["s"] = "open_split",
|
||||
["v"] = "open_vsplit",
|
||||
},
|
||||
},
|
||||
nesting_rules = {},
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
visible = true,
|
||||
hide_dotfiles = true,
|
||||
hide_gitignored = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
6
_unused/astronvim/lua/user/plugins/notify.lua
Normal file
6
_unused/astronvim/lua/user/plugins/notify.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"rcarriga/nvim-notify",
|
||||
opts = {
|
||||
background_colour = "#000000",
|
||||
},
|
||||
}
|
11
_unused/astronvim/lua/user/plugins/treesitter.lua
Normal file
11
_unused/astronvim/lua/user/plugins/treesitter.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"python",
|
||||
"terraform",
|
||||
"vim",
|
||||
},
|
||||
},
|
||||
}
|
8
_unused/astronvim/lua/user/plugins/whitespace.lua
Normal file
8
_unused/astronvim/lua/user/plugins/whitespace.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
{ "johnfrankmorgan/whitespace.nvim",
|
||||
event = "User AstroFile",
|
||||
opts = {
|
||||
highlight = 'SpellBad',
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue