added flog, the git log viewer

This commit is contained in:
jon
2023-01-26 16:51:33 -06:00
parent 90e3662622
commit d34a545693

View File

@@ -5,7 +5,8 @@ filetype off
" general settings " general settings
set encoding=utf-8 set encoding=utf-8
let mapleader="," " let mapleader=","
let mapleader=" "
set nu set nu
set laststatus=2 set laststatus=2
set showtabline=2 set showtabline=2
@@ -17,7 +18,7 @@ set ignorecase
set smartcase set smartcase
" share system clipboard " share system clipboard
set clipboard^=unnamed,unnamedplus "set clipboard^=unnamed,unnamedplus
" mouse stuff " mouse stuff
" set mouse=a " set mouse=a
@@ -56,6 +57,8 @@ set number relativenumber
"set highlight cursorcolumn cterm=NONE ctermbg=darkred ctermfg=white guibg=darkred guifg=white "set highlight cursorcolumn cterm=NONE ctermbg=darkred ctermfg=white guibg=darkred guifg=white
nnoremap <Leader>c :set cursorline! cursorcolumn!<CR> nnoremap <Leader>c :set cursorline! cursorcolumn!<CR>
nnoremap <Leader>s :up<CR>
"toggle search hilight with <leader>h "toggle search hilight with <leader>h
nnoremap <silent><expr> <Leader>h (&hls && v:hlsearch ? ':nohls' : ':set hls')."\n" nnoremap <silent><expr> <Leader>h (&hls && v:hlsearch ? ':nohls' : ':set hls')."\n"
@@ -125,6 +128,7 @@ call plug#begin('~/.vim/plugged') " vim-plug
Plug 'unblevable/quick-scope' Plug 'unblevable/quick-scope'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
Plug 'rbong/vim-flog'
Plug 'vim-scripts/indentpython.vim' Plug 'vim-scripts/indentpython.vim'
Plug 'scrooloose/syntastic' Plug 'scrooloose/syntastic'
Plug 'nvie/vim-flake8' " PEP 8 checking plugin Plug 'nvie/vim-flake8' " PEP 8 checking plugin