refactor: add dressing and update the lualine to show full path on file

This commit is contained in:
Dinesh Salunke 2023-06-26 23:25:41 +05:30
parent dfdfcabd5d
commit b258143eab

View File

@ -4,7 +4,15 @@ return {
dependencies = {
"nvim-tree/nvim-web-devicons",
},
opts = {},
opts = {
sections = {
lualine_a = {
"mode",
},
lualine_b = { "branch", "diff", "diagnostics" },
lualine_c = { { "filename", path = 1 } },
},
},
},
{
@ -29,7 +37,6 @@ return {
"lukas-reineke/indent-blankline.nvim",
event = { "BufReadPost", "BufNewFile" },
opts = {
-- char = "▏",
char = "",
filetype_exclude = {
"help",
@ -78,4 +85,25 @@ return {
})
end,
},
{
"stevearc/dressing.nvim",
opts = {
select = {
enabled = true,
backend = {
"telescope",
"fzf",
"builtin",
"nui",
},
telescope = require("telescope.themes").get_ivy(),
},
},
},
{
"rcarriga/nvim-notify",
opts = {},
},
}