Added vim-signify
and configured to show Git info in gutter. Updated config to show more git info in statusline
This commit is contained in:
10
.vimrc
10
.vimrc
@@ -131,6 +131,10 @@ Plug 'bullets-vim/bullets.vim'
|
|||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
|
||||||
|
" vim-signify
|
||||||
|
" https://github.com/mhinz/vim-signify
|
||||||
|
Plug 'mhinz/vim-signify'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" ---------------------------------------------------------------------------------------------------------------------
|
" ---------------------------------------------------------------------------------------------------------------------
|
||||||
@@ -164,9 +168,9 @@ let g:bullets_enabled_file_types = [ 'markdown', 'gitcommit' ]
|
|||||||
let g:bullets_outline_levels = ['num', 'abc', 'std*', 'std+', 'std-']
|
let g:bullets_outline_levels = ['num', 'abc', 'std*', 'std+', 'std-']
|
||||||
|
|
||||||
"vim-airline
|
"vim-airline
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
let g:airline_extensions = ['hunks', 'branch', 'tabline']
|
||||||
let g:airline_detect_theme_from_guicolors = 1
|
let g:airline_detect_theme_from_guicolors = 1
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
|
||||||
" ---------------------------------------------------------------------------------------------------------------------
|
" ---------------------------------------------------------------------------------------------------------------------
|
||||||
" ==> FZF Helper Functions
|
" ==> FZF Helper Functions
|
||||||
@@ -305,7 +309,7 @@ nnoremap <leader>f :call fzf#run(fzf#vim#with_preview(fzf#wrap({'source': 'find
|
|||||||
nnoremap <leader>w :execute "if &wrap\n set nowrap\nelse\n set wrap linebreak\nendif"<CR>
|
nnoremap <leader>w :execute "if &wrap\n set nowrap\nelse\n set wrap linebreak\nendif"<CR>
|
||||||
|
|
||||||
" Toggle line numbers
|
" Toggle line numbers
|
||||||
nnoremap <leader>n :set number! relativenumber!<CR>
|
nnoremap <leader>n :set number! relativenumber! <CR>
|
||||||
|
|
||||||
" ---------------------------------------------------------------------------------------------------------------------
|
" ---------------------------------------------------------------------------------------------------------------------
|
||||||
" ==> Keymaps: Text bubbling (http://vimcasts.org/episodes/bubbling-text/)
|
" ==> Keymaps: Text bubbling (http://vimcasts.org/episodes/bubbling-text/)
|
||||||
|
|||||||
Reference in New Issue
Block a user