this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup Fish configuration

+26 -47
-6
.gitmodules
··· 1 - [submodule "tmux/plugins/tpm"] 2 - path = tmux/plugins/tpm 3 - url = https://github.com/tmux-plugins/tpm.git 4 - [submodule "git/template/hooks/commit-comments"] 5 - path = git/template/hooks/commit-comments 6 - url = https://github.com/thebearjew/commit-comments.git
-1
fish/functions/.gitignore
··· 1 - fin.fish
-7
fish/functions/fish_user_key_bindings.fish
··· 1 - function fish_user_key_bindings 2 - bind \e\e 'thefuck-command-line' # Bind EscEsc to thefuck 3 - bind \cf 'thefuck-command-line' # Bind EscEsc to thefuck 4 - 5 - fish_vi_key_bindings 6 - fzf_key_bindings 7 - end
-1
fish/functions/fzf_key_bindings.fish
··· 1 - /Users/hauleth/.fzf/shell/key-bindings.fish
+23 -23
nvim/after/ftplugin/rust.vim
··· 3 3 setlocal formatprg=rustfmt\ --write-mode=display 4 4 let g:rustfmt_autosave = 1 5 5 6 - let g:neomake_rust_cargo_maker = { 7 - \ 'append_file': 0, 8 - \ 'args': ['check'], 9 - \ 'errorformat': 10 - \ '%-G%f:%s:,' . 11 - \ '%f:%l:%c: %trror: %m,' . 12 - \ '%f:%l:%c: %tarning: %m,' . 13 - \ '%f:%l:%c: %m,'. 14 - \ '%f:%l: %trror: %m,'. 15 - \ '%f:%l: %tarning: %m,'. 16 - \ '%f:%l: %m', 17 - \ } 6 + " let g:neomake_rust_cargo_maker = { 7 + " \ 'append_file': 0, 8 + " \ 'args': ['check'], 9 + " \ 'errorformat': 10 + " \ '%-G%f:%s:,' . 11 + " \ '%f:%l:%c: %trror: %m,' . 12 + " \ '%f:%l:%c: %tarning: %m,' . 13 + " \ '%f:%l:%c: %m,'. 14 + " \ '%f:%l: %trror: %m,'. 15 + " \ '%f:%l: %tarning: %m,'. 16 + " \ '%f:%l: %m', 17 + " \ } 18 18 19 - let g:neomake_rust_rustc_maker = { 20 - \ 'args': ['-Z', 'parse-only'], 21 - \ 'errorformat': 22 - \ '%-G%f:%s:,' . 23 - \ '%f:%l:%c: %trror: %m,' . 24 - \ '%f:%l:%c: %tarning: %m,' . 25 - \ '%f:%l:%c: %m,'. 26 - \ '%f:%l: %trror: %m,'. 27 - \ '%f:%l: %tarning: %m,'. 28 - \ '%f:%l: %m', 29 - \ } 19 + " let g:neomake_rust_rustc_maker = { 20 + " \ 'args': ['-Z', 'parse-only'], 21 + " \ 'errorformat': 22 + " \ '%-G%f:%s:,' . 23 + " \ '%f:%l:%c: %trror: %m,' . 24 + " \ '%f:%l:%c: %tarning: %m,' . 25 + " \ '%f:%l:%c: %m,'. 26 + " \ '%f:%l: %trror: %m,'. 27 + " \ '%f:%l: %tarning: %m,'. 28 + " \ '%f:%l: %m', 29 + " \ } 30 30 31 31 inoreabbrev excr extern crate 32 32
+3 -9
nvim/init.vim
··· 32 32 " Completion 33 33 Plug 'racer-rust/vim-racer' 34 34 Plug 'ludovicchabant/vim-gutentags' 35 - Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | Plug 'fishbullet/deoplete-ruby' 36 35 37 36 " Code manipulation 38 37 Plug 'tommcdo/vim-exchange' ··· 52 51 Plug 'mjbrownie/swapit' 53 52 Plug 'tpope/vim-repeat' 54 53 Plug 'tpope/vim-unimpaired' 55 - Plug 'junegunn/Goyo.vim', { 'on': 'Goyo' } 56 - Plug 'junegunn/limelight.vim', { 'on': 'Limelight' } 57 54 Plug 'wellle/targets.vim' 55 + Plug 'mhinz/vim-grepper' 58 56 59 57 call plug#end() 60 58 " }}} ··· 246 244 " }}} 247 245 " Configuration {{{ 248 246 " Grep {{{ 249 - if executable('ag') 247 + if executable('rg') 250 248 set grepformat^=%f:%l:%c:%m 251 - set grepprg=ag\ --vimgrep\ --hidden 249 + set grepprg=rg\ --vimgrep 252 250 endif 253 251 " }}} 254 252 " Unload unneeded plugins {{{ ··· 278 276 let g:signify_sign_changedelete = '▞' 279 277 280 278 let g:signify_sign_show_count = 0 281 - " }}} 282 - " Limelight {{{ 283 - let g:limelight_conceal_ctermfg = 'lightgray' 284 - let g:limelight_conceal_guifg = '#666666' 285 279 " }}} 286 280 " Terminal colors {{{ 287 281 let g:terminal_color_0 = "#2a3158"