summaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
Diffstat (limited to 'init.vim')
-rwxr-xr-xinit.vim7
1 files changed, 3 insertions, 4 deletions
diff --git a/init.vim b/init.vim
index 90345c5..f46841c 100755
--- a/init.vim
+++ b/init.vim
@@ -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