diff --git a/lua/custom/lualine.lua b/lua/custom/lualine.lua new file mode 100644 index 0000000..c968ac7 --- /dev/null +++ b/lua/custom/lualine.lua @@ -0,0 +1,14 @@ +require("lualine").setup({ + options = { + theme = "gruvbox-material", + }, + sections = { + lualine_c = { + { + "filename", + file_status = true, + path = 2, + }, + }, + }, +}) diff --git a/lua/custom/plugins/dressing.lua b/lua/custom/plugins/dressing.lua new file mode 100644 index 0000000..feadb27 --- /dev/null +++ b/lua/custom/plugins/dressing.lua @@ -0,0 +1,4 @@ +return { + "stevearc/dressing.nvim", + event = "VeryLazy" +} diff --git a/lua/custom/plugins/lualine.lua b/lua/custom/plugins/lualine.lua new file mode 100644 index 0000000..e17801b --- /dev/null +++ b/lua/custom/plugins/lualine.lua @@ -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, +} +