From e5d3687bf9c7c83e9841f9e70c73a05d8ae56c02 Mon Sep 17 00:00:00 2001 From: Jackson Taylor Date: Wed, 27 Jan 2021 22:02:13 -0500 Subject: Initial commit --- .config/nvim/coc-settings.json | 9 ++ .config/nvim/init.vim | 189 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+) create mode 100644 .config/nvim/coc-settings.json create mode 100644 .config/nvim/init.vim (limited to '.config/nvim') diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json new file mode 100644 index 0000000..cbac8e1 --- /dev/null +++ b/.config/nvim/coc-settings.json @@ -0,0 +1,9 @@ +{ + "languageserver": { + "golang": { + "command": "gopls", + "rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"], + "filetypes": ["go"] + } + } +} diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim new file mode 100644 index 0000000..11a05d5 --- /dev/null +++ b/.config/nvim/init.vim @@ -0,0 +1,189 @@ +let mapleader ="," + +if ! filereadable(expand('~/.config/nvim/autoload/plug.vim')) + echo "Downloading junegunn/vim-plug to manage plugins..." + silent !mkdir -p ~/.config/nvim/autoload/ silent !curl "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim" > ~/.config/nvim/autoload/plug.vim + autocmd VimEnter * PlugInstall +endif + +call plug#begin('~/.config/nvim/plugged') + Plug 'ap/vim-css-color' + Plug 'dracula/vim', { 'as': 'dracula' } + Plug 'buoto/gotests-vim' " Better Golang Testing + Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries GoUpdateBinaries' } " Nice Golang plugin + Plug 'jreybert/vimagit' " Git plugin + Plug 'kovetskiy/sxhkd-vim' " sxhkd config syntax + Plug 'preservim/nerdtree' " Folder structure + Plug 'tpope/vim-commentary' + Plug 'vim-airline/vim-airline' + Plug 'vim-airline/vim-airline-themes' + Plug 'vimwiki/vimwiki' + Plug 'ctrlpvim/ctrlp.vim' + Plug 'majutsushi/tagbar' +call plug#end() + +nmap :TagbarToggle + +" Some technical stuff +set go=a +set clipboard+=unnamedplus +nnoremap c "_c +filetype plugin on +set nocompatible + +" Basic stuff +syntax on +set nohlsearch +set number relativenumber +set wrap! +set ignorecase +set smartcase +set expandtab +set tabstop=4 +set shiftwidth=4 +set encoding=utf-8 + +" Enable autocompletion: +set wildmode=longest,list,full + +" Fix colorschemes +set termguicolors +colorscheme dracula + +" Spell-check, 'o' for 'orthography' +map o :setlocal spell! spelllang=en_us +map :CtrlPBufTag + +" Splits open at the bottom and right +set splitbelow splitright + +" Nerd tree +map :NERDTreeToggle +autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif + +" FZF +map :FZF +map :Ctr + +" Shortcutting split navigation +map h +map j +map k +map l + +" Check file in shellcheck: +map s :!clear && shellcheck % + +" Open my bibliography file in split +" map b :vsp$BIB + " map r :vsp$REFER + +" Compile document, be it groff/LaTeX/markdown/etc. +map c :w! \| !doc_compiler % + +" Open corresponding .pdf/.html or preview +map p :!opout % + +" Runs a script that cleans out tex build files whenever I close out of a .tex file. +autocmd VimLeave *.tex !texclear % + +" Ensure files are read as what I want: +let g:vimwiki_ext2syntax = {'.Rmd': 'markdown', '.rmd': 'markdown','.md': 'markdown', '.markdown': 'markdown', '.mdown': 'markdown'} +autocmd BufRead,BufNewFile /tmp/calcurse*,~/.calcurse/notes/* set filetype=markdown +autocmd BufRead,BufNewFile *.ms,*.me,*.mom,*.man set filetype=groff +autocmd BufRead,BufNewFile *.tex set filetype=tex + +" map v :VimwikiIndex +" let g:vimwiki_list = [{'path': '~/vimwiki', 'syntax': 'markdown', 'ext': '.md'}] + +" Save file as sudo on files that require root permission +cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' edit! + +" Automatically deletes all trailing whitespace on save. +autocmd BufWritePre * %s/\s\+$//e + +" When shortcut files are updated, renew bash and ranger configs with new material: +autocmd BufWritePost files,directories !shortcuts +" Run xrdb whenever Xdefaults or Xresources are updated. +autocmd BufWritePost *Xresources,*Xdefaults !xrdb % +" Update binds when sxhkdrc is updated. +autocmd BufWritePost *sxhkdrc !pkill -USR1 sxhkd + +" Turns off highlighting on the bits of code that are changed, so the line that is changed is highlighted but the actual text that has changed stands out on the line and is readable. +if &diff + highlight! link DiffText MatchParen +endif + +" ------------------------------------------------------------------------------------------------- +" coc.nvim default settings +" ------------------------------------------------------------------------------------------------- + +" " Golang stuff +" let g:go_def_mode='gopls' +" let g:go_info_mode='gopls' +" let g:go_def_mapping_enabled=0 + +" " if hidden is not set, TextEdit might fail. +" set hidden +" " Better display for messages +" set cmdheight=2 +" " Smaller updatetime for CursorHold & CursorHoldI +" set updatetime=300 +" " don't give |ins-completion-menu| messages. +" set shortmess+=c +" " always show signcolumns +" set signcolumn=yes + +" " Use tab for trigger completion with characters ahead and navigate. +" " Use command ':verbose imap ' to make sure tab is not mapped by other plugin. +" inoremap +" \ pumvisible() ? "\" : +" \ check_back_space() ? "\" : +" \ coc#refresh() +" inoremap pumvisible() ? "\" : "\" + +" function! s:check_back_space() abort +" let col = col('.') - 1 +" return !col || getline('.')[col - 1] =~# '\s' +" endfunction + +" " Use to trigger completion. +" inoremap coc#refresh() + +" " Use `[c` and `]c` to navigate diagnostics +" " nmap [c (coc-diagnostic-prev) +" " nmap ]c (coc-diagnostic-next) + +" " Remap keys for gotos +" nmap gd (coc-definition) +" nmap gy (coc-type-definition) +" nmap gi (coc-implementation) +" nmap gr (coc-references) + +" " Use U to show documentation in preview window +" " nnoremap U :call show_documentation() + +" " Remap for rename current word +" nmap rn (coc-rename) + +" " Remap for format selected region +" vmap f (coc-format-selected) +" nmap f (coc-format-selected) +" " Show all diagnostics +" nnoremap a :CocList diagnostics +" " Manage extensions +" nnoremap e :CocList extensions +" " Show commands +" nnoremap c :CocList commands +" " Find symbol of current document +" nnoremap o :CocList outline +" " Search workspace symbols +" nnoremap s :CocList -I symbols +" " Do default action for next item. +" nnoremap j :CocNext +" " Do default action for previous item. +" nnoremap k :CocPrev +" " Resume latest coc list +" nnoremap p :CocListResume + +" autocmd BufWritePost ~/.local/src/dwmblocks/config.h !cd ~/.local/src/dwmblocks/; sudo make install && { killall -q dwmblocks;setsid dwmblocks & } -- cgit v1.2.3