nvim-develop #3

Closed
t0xa wants to merge 44 commits from nvim-develop into main
3 changed files with 43 additions and 0 deletions
Showing only changes of commit ecec0c4c56 - Show all commits

14
lua/custom/lualine.lua Normal file
View file

@ -0,0 +1,14 @@
require("lualine").setup({
options = {
theme = "gruvbox-material",
},
sections = {
lualine_c = {
{
"filename",
file_status = true,
path = 2,
},
},
},
})

View file

@ -0,0 +1,4 @@
return {
"stevearc/dressing.nvim",
event = "VeryLazy"
}

View file

@ -0,0 +1,25 @@
return {
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
local lualine = require("lualine")
-- configure lualine with modified theme
lualine.setup({
options = {
-- theme = "tokyonight",
-- theme = "catppuccin-mocha",
theme = "gruvbox-material",
},
sections = {
lualine_c = {
{
"filename",
file_status = true,
path = 2,
},
},
},
})
end,
}