dot/.vimrc

125 lines
3.3 KiB
VimL
Raw Normal View History

2019-09-13 23:28:05 +00:00
" Single-quote is a comment written to be read
2019-09-14 09:20:51 +00:00
" Double-quotes are commented out code and can be removed or added
2019-09-13 23:28:05 +00:00
2019-09-15 10:14:07 +00:00
" General Vim Settings
2019-09-13 23:28:05 +00:00
" Set tabwidth=2, adjust Vim shiftwidth to the same
set tabstop=2 shiftwidth=2
" expandtab inserts spaces instead of tabs
set expandtab
" autindent inserts the next line at your current depth
set autoindent
" mouse=a allows for mouse interaction with vim when supported
set mouse=a
2020-01-20 01:22:05 +00:00
set number
2019-09-15 10:14:07 +00:00
" Use Powerline symbols
"let g:airline_powerline_fonts = 1
2019-09-13 23:28:05 +00:00
" Enable Syntax Highlighting in Vim
syntax on
2019-09-15 10:14:07 +00:00
" Use Sourcerer color scheme by Xero
colorscheme sourcerer
2019-09-13 23:28:05 +00:00
" Fix plugin compatibility issues
set nocp
" Allow backspace to remove all types of characters
set backspace=indent,eol,start
2019-09-15 10:14:07 +00:00
" Set terminal title when opening file
" autocmd BufEnter * let &titlestring = ' ' . expand("%:t")
" set title
" Custom Vim Keybindings
2019-09-13 23:28:05 +00:00
" nnoremap <C-e> <C-w> " Modify and remove leading quotation
" Set window jump to custom binding
" default Ctrl-W conflict - closes browser tabs
nnoremap <C-e> <C-w>
2019-09-15 10:14:07 +00:00
nnoremap <C-b> :!make -C build/
2019-09-15 10:14:07 +00:00
" Vim Plugin Settings
" set rtp+=/path/to/rtp/that/included/pathogen/vim " if needed
" Enable Pathogen plugin manager
execute pathogen#infect()
filetype plugin indent on
" Set Vim Airline theme
" base16 soda base16_pop laederon night_owl kalisi* ayu_mirage* raven
let g:airline_theme='kalisi'
2019-09-15 13:08:39 +00:00
" Gitgutter installed for + - diffs in gutters within repo files
" Syntastic syntax checker settings
" See :help syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
2019-09-15 10:14:07 +00:00
" Clang_complete settings
let g:clang_library_path='/usr/lib/llvm-8/lib/'
2019-09-15 10:14:07 +00:00
" Understand how the plugin works: :h signify-modus-operandi
" Spare the plugin some work and read: :h g:signify_vcs_list
" Signify plugin settings
" Diff gutter within Vim
2019-09-21 05:37:06 +00:00
" let g:signify_vcs_list = ['git', 'hg']
" let g:signify_cursorhold_insert = 1
" let g:signify_cursorhold_normal = 1
" let g:signify_update_on_bufenter = 0
" let g:signify_update_on_focusgained = 1
"
2019-09-15 10:14:07 +00:00
" Colorizer plugin settings
" See :h colorizer in Vim for more info
"let g:colorizer_colornames = 0 " Don't color literal names, like red, green, etc
"let g:colorizer_auto_color = 1
"let g:colorizer_skip_comments = 1
"let g:colorizer_auto_filetype ='css,html,vim'
" Symbols important to vim / terminal layouts
2019-09-20 23:49:34 +00:00
set termencoding=utf-8
set encoding=utf-8
2019-09-15 10:14:07 +00:00
" air-line
let g:airline_powerline_fonts = 1
if !exists('g:airline_symbols')
let g:airline_symbols = {}
endif
" unicode symbols
let g:airline_left_sep = '»'
let g:airline_left_sep = '▶'
let g:airline_right_sep = '«'
let g:airline_right_sep = '◀'
let g:airline_symbols.linenr = '␊'
let g:airline_symbols.linenr = '␤'
let g:airline_symbols.linenr = '¶'
let g:airline_symbols.branch = '⎇'
let g:airline_symbols.paste = 'ρ'
let g:airline_symbols.paste = 'Þ'
let g:airline_symbols.paste = '∥'
let g:airline_symbols.whitespace = 'Ξ'
2019-09-20 23:49:34 +00:00
2019-09-15 10:14:07 +00:00
" airline symbols
let g:airline_left_sep = ''
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = ''
let g:airline_symbols.readonly = ''
let g:airline_symbols.linenr = ''
2019-09-20 23:49:34 +00:00