diff --git a/home/config/nvim/lua/plugins.lua b/home/config/nvim/lua/plugins.lua index 0e8d8f2..0f63587 100644 --- a/home/config/nvim/lua/plugins.lua +++ b/home/config/nvim/lua/plugins.lua @@ -56,10 +56,18 @@ return function(use) require('lualine').setup { options = { theme = 'palenight' }, sections = { + lualine_b ={ {'filename', path=1} }, lualine_c = { 'lsp_progress' } - } + }, + inactive_sections = { + lualine_a = {}, + lualine_b ={ {'filename', path=1} }, + lualine_c = {}, + lualine_d = {}, + lualine_e = {}, + } } use({'voldikss/vim-floaterm'}) @@ -83,5 +91,7 @@ return function(use) use({'nvim-treesitter/nvim-treesitter-refactor'}) use({'RRethy/nvim-treesitter-textsubjects'}) + use({'airblade/vim-rooter'}) + end