Updated readme

This commit is contained in:
2025-03-04 17:11:06 +01:00
parent 65451f9c9d
commit 1caf48f1d6
6 changed files with 127 additions and 10 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
return {
'akinsho/bufferline.nvim',
"akinsho/bufferline.nvim",
version = "*",
dependencies = { 'nvim-tree/nvim-web-devicons' },
dependencies = { "nvim-tree/nvim-web-devicons" },
lazy = false,
opts = {},
}
+1 -1
View File
@@ -16,5 +16,5 @@ return {
vim.keymap.set("n", "<leader>fb", fzf_lua.buffers)
vim.keymap.set("n", "<leader>fh", fzf_lua.oldfiles)
vim.keymap.set("n", "<leader>fg", fzf_lua.live_grep)
end
end,
}
+4 -4
View File
@@ -1,9 +1,9 @@
return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
lazy = false,
opts = {
options = { section_separators = '', component_separators = '' },
extensions = { "fzf", "lazy", "man", "mason", "nvim-tree"},
options = { section_separators = "", component_separators = "" },
extensions = { "fzf", "lazy", "man", "mason", "nvim-tree" },
},
}
+1 -1
View File
@@ -8,5 +8,5 @@ return {
end,
config = function()
vim.cmd("colorscheme moonfly")
end
end,
}
+1 -1
View File
@@ -9,6 +9,6 @@ return {
local api = require("nvim-tree.api")
vim.keymap.set("n", "<leader>e", api.tree.toggle )
vim.keymap.set("n", "<leader>e", api.tree.toggle)
end,
}