From da1d0b2aa9d293a17644bfc33a869b7b2b22b662 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Wed, 17 May 2023 15:06:50 -0400 Subject: [PATCH] paths --- home/config/nvim/lua/plugins.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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