Skip to content

Commit

Permalink
Added aerial to the config
Browse files Browse the repository at this point in the history
  • Loading branch information
elC0mpa committed Jul 30, 2024
1 parent 448e9df commit e1bdae2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions lazy-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" },
"aerial.nvim": { "branch": "master", "commit": "e75a3df2c20b3a98c786f5e61587d74a7a6b61d6" },
"bufdelete.nvim": { "branch": "master", "commit": "f6bcea78afb3060b198125256f897040538bcb81" },
"bufferline.nvim": { "branch": "main", "commit": "2e3c8cc5a57ddd32f1edd2ffd2ccb10c09421f6c" },
"coc.nvim": { "branch": "release", "commit": "ebe2a2058ed85d3884f8010a53bac25edbf9675c" },
Expand Down
1 change: 1 addition & 0 deletions lua/maps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ vim.keymap.set('n', '<C-w>', ':Bdelete<CR>', opts)

-- Navigation commands
vim.keymap.set('n', '<C-b>', ':Neotree toggle<CR>', opts)
vim.keymap.set('n', '<A-b>', ':AerialToggle<CR>', opts)
vim.keymap.set('n', '<C-h>', ':bprevious<CR>', opts)
vim.keymap.set('n', '<C-l>', ':bnext<CR>', opts)
vim.keymap.set('n', '<C-t>', ':tabnew<CR>', opts)
Expand Down
9 changes: 9 additions & 0 deletions lua/plugins_config/aerial.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
return {
'stevearc/aerial.nvim',
opts = {},
-- Optional dependencies
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons"
},
}
5 changes: 4 additions & 1 deletion lua/plugins_config/lualine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ return {
opts = {
options = {
theme = 'tokyonight',
}
},
sections = {
lualine_x = {"aerial"}
}
}
}
1 change: 1 addition & 0 deletions lua/plugins_config/neo-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ return {
git_status_async = false,
window = {
mappings = {
["P"] = { "toggle_preview", config = { use_float = true, use_image_nvim = true } },
["<space>"] = "open",
},
},
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.3
v1.5.0

0 comments on commit e1bdae2

Please sign in to comment.