Switch to AstroNvim.

This commit is contained in:
Bartek Stalewski 2023-04-16 00:10:33 +02:00
parent 6dc42b37e6
commit d36cf3a49c
15 changed files with 150 additions and 1 deletions

View file

@ -0,0 +1,6 @@
return {
"lukas-reineke/indent-blankline.nvim",
opts = {
show_current_context = false,
}
}

View file

@ -0,0 +1,4 @@
return {
{ "goolord/alpha-nvim", enabled = false },
{ "rebelot/heirline.nvim", enabled = false },
}

View file

@ -0,0 +1,23 @@
return {
"nvim-lualine/lualine.nvim",
event = "User AstroFile",
opts = {
options = {
component_separators = '',
icons_enabled = true,
section_separators = '',
theme = "molokai",
},
sections = {
lualine_a = { "mode" },
lualine_b = { { "filename", file_status = true, path = 1 } },
lualine_c = { "branch" },
lualine_x = { "filetype" },
lualine_y = { "progress" },
lualine_z = { "location" },
},
tabline = {
lualine_a = { "buffers" },
},
},
}

View file

@ -0,0 +1,3 @@
return {
"tanvirtin/monokai.nvim",
}

View 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,
-- width = 100,
mappings = {
["s"] = "open_split",
["v"] = "open_vsplit",
},
},
nesting_rules = {},
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = true,
},
},
}
}

View file

@ -0,0 +1,6 @@
return {
"rcarriga/nvim-notify",
opts = {
background_colour = "#000000",
},
}

View file

@ -0,0 +1,12 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
auto_install = true,
ensure_installed = {
"bash",
"python",
"terraform",
"vim",
},
},
}

View file

@ -0,0 +1,5 @@
return {
{ "johnfrankmorgan/whitespace.nvim",
event = "User AstroFile",
},
}