2021-12-03 02:28:14 -05:00
|
|
|
set nocompatible
|
|
|
|
filetype off
|
|
|
|
|
|
|
|
" ----[Plugins]----
|
|
|
|
call plug#begin()
|
|
|
|
|
|
|
|
Plug 'ms-jpq/coq_nvim', {'branch': 'coq'}
|
|
|
|
|
|
|
|
Plug 'ms-jpq/coq.artifacts', {'branch': 'artifacts'}
|
|
|
|
|
|
|
|
Plug 'ms-jpq/coq.thirdparty', {'branch': '3p'}
|
|
|
|
|
|
|
|
call plug#end()
|
|
|
|
|
2021-12-03 11:38:26 -05:00
|
|
|
# ----[COQ]----
|
|
|
|
let g:coq_settings = { 'auto_start': 'shut-up' }
|
|
|
|
|
2021-12-03 02:28:14 -05:00
|
|
|
" ----[Look and Feel]----
|
|
|
|
" Syntax hilighting and line numbers
|
|
|
|
syntax on
|
|
|
|
set encoding=utf-8
|
|
|
|
set number relativenumber
|
|
|
|
|
|
|
|
set wildmode=longest,list,full
|
|
|
|
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
|
|
|
|
|
|
|
|
set title
|
|
|
|
|
|
|
|
" Indents
|
|
|
|
filetype plugin indent on
|
|
|
|
|
|
|
|
" Tabbing
|
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set softtabstop=4 expandtab
|
|
|
|
|
|
|
|
" Splits below and right
|
|
|
|
set splitbelow splitright
|
|
|
|
|
|
|
|
" Block cursor
|
|
|
|
set guicursor=i:block
|
|
|
|
|
|
|
|
" ----[File Specific Stuff]----
|
|
|
|
" yml
|
|
|
|
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
|
|
|
autocmd FileType yml setlocal ts=2 sts=2 sw=2 expandtab
|
|
|
|
|
|
|
|
" ----[Macros]----
|
|
|
|
" Find and replace macro
|
|
|
|
nnoremap S :%s//g<Left><Left>
|
|
|
|
|
|
|
|
" Copy paste
|
|
|
|
vnoremap <C-c> "+y
|
|
|
|
map <C-p> "+P
|
|
|
|
|
|
|
|
" Markers
|
|
|
|
inoremap <leader><leader> <Esc>/<++><Enter>"_c4l
|
|
|
|
vnoremap <leader><leader> <Esc>/<++><Enter>"_c4l
|
|
|
|
map <leader><leader> <Esc>/<++><Enter>"_c4l
|
|
|
|
|
|
|
|
" sudo write, TODO: make this not fuck things up
|
|
|
|
" command W :execute ':silent w !sudo tee % > /dev/null' | :edit!
|
|
|
|
|
|
|
|
" ----[Pre / Post Write]----
|
|
|
|
" Get rid of extra whitespace
|
|
|
|
autocmd BufWritePre * %s/\s\+$//e
|
|
|
|
|
|
|
|
" Run xrdb when Xresources or Xdefaults are changed
|
|
|
|
autocmd BufWritePost *Xresources,*Xdefaults !xrdb %
|
|
|
|
|
|
|
|
" Reload sxhkd when config is edited
|
|
|
|
autocmd BufWritePost sxhkdrc :silent !pkill sxhkd; sxhkd &
|