Moded git gutter settings

Changed the icons that git gutter uses to emojes 👍👎🤞 for add, remove,
and change
This commit is contained in:
Russell R. 2020-10-02 06:08:32 -04:00
parent a0f647c796
commit bafaf5c8c4
1 changed files with 20 additions and 3 deletions

View File

@ -40,11 +40,16 @@ let g:vimwiki_list = [{'path': '~/vimwiki/',
set termguicolors " turn on true colors, since ny term supports that
colorscheme cobalt2 " set the colorscheme
set cursorline " Should kind of highlight what ever line the cursor is on, to make it easy to find
set colorcolumn=100 " Put a highlighted colume at the 100 space mark. Just so we can see a really long line, like this one.
set wildmode=longest,list,full
" ***********************************************************
" ****************** basic remap keys ***********************
" ***********************************************************
" remap the split window motion keybindings
" stole these from BrodieRobertson
" stole these from BrodieRobertson, just wish I could get them to work as CTRL
" Move to the window the left
map <A-h> <C-w>h
@ -58,11 +63,17 @@ map <A-k> <C-w>k
" Move to the window to right
map <A:l> <C-w>l
" keys to change the size of windows
nnoremap <Leader>J :resize +5<CR>
nnoremap <Leader>K :resize -5<CR>
nnoremap <Leader>H :vertical resize -5<CR>
nnoremap <Leader>L :vertical resize +5<CR>
" nerdtree file manager
:nmap <silent> <C-D> :NERDTreeToggle<CR>
" buffers
:nnoremap <F5> :buffers<CR>:buffer<Space>
" Should show a list of the buffers that opened
:nnoremap <F5> :buffers<CR>:buffer<Space>
" fzf keybindings.
map <C-f> :Files<CR>
@ -71,4 +82,10 @@ nnoremap <leader>g :Rg<CR>
nnoremap <leader>t :Tags<CR>
nnoremap <leader>m :Marks<CR>
" GitGutter Customization {{{
let g:gitgutter_sign_added = '👍'
let g:gitgutter_sign_modified = '🤞'
let g:gitgutter_sign_modified_first_line = '🤞'
let g:gitgutter_sign_removed = '👎'
let g:gitgutter_sign_removed_first_line = '👎'