diff options
Diffstat (limited to 'init.vim')
-rwxr-xr-x | init.vim | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -143,7 +143,7 @@ let g:lightline = { \ 'colorscheme': 'wombat', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], - \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] + \ [ 'gitbranch', 'readonly', 'filename', 'modified', 'absolutepath' ] \ ], \ 'right': [ [ 'lineinfo' ], \ [ 'percent' ], @@ -154,12 +154,11 @@ let g:lightline = { \ 'charvaluehex': '0x%B' \ }, \ 'component_function': { - \ 'gitbranch': 'FugitiveHead' + \ 'gitbranch': 'FugitiveHead', + \ 'filepath': 'LightlineFilepath' \ } \ } - - " For Rust development Plug 'hrsh7th/nvim-cmp' " Completion framework Plug 'hrsh7th/cmp-nvim-lsp' " LSP completion source for nvim-cmp |