diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-03-05 13:09:42 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-03-05 13:09:42 +0100 |
| commit | 96e011fd75613e9fe8adc55074427b9bd76691e7 (patch) | |
| tree | 55a07c7275d492b10d5c2092dfb3eeeb40ca9223 | |
| parent | b66a99a07e932b8c3f633ca464643d4639f62869 (diff) | |
| download | dotfiles-96e011fd75613e9fe8adc55074427b9bd76691e7.tar.gz dotfiles-96e011fd75613e9fe8adc55074427b9bd76691e7.tar.bz2 dotfiles-96e011fd75613e9fe8adc55074427b9bd76691e7.zip | |
Updated mutt urlscan binding to be consistent with newsboat/qutebrowser, Updated fzf.vim to only list files tracked by git, Added the default branch name of git to master
| -rw-r--r-- | config/git/config | 2 | ||||
| -rw-r--r-- | config/mutt/muttrc | 4 | ||||
| -rw-r--r-- | config/vim/vimrc | 14 |
3 files changed, 11 insertions, 9 deletions
diff --git a/config/git/config b/config/git/config index bb4fef3..0dbbd8f 100644 --- a/config/git/config +++ b/config/git/config @@ -10,3 +10,5 @@ tool = vimdiff [commit] gpgsign = true +[init] + defaultBranch = master diff --git a/config/mutt/muttrc b/config/mutt/muttrc index 85b1d35..ff90594 100644 --- a/config/mutt/muttrc +++ b/config/mutt/muttrc @@ -56,5 +56,5 @@ source "$XDG_DATA_HOME/mutt/solarized/mutt-colors-solarized-dark-16.muttrc" # password source "gpg -d $XDG_DATA_HOME/mutt/passwd.muttrc.gpg 2> /dev/null |" -macro pager cb |urlscan -macro pager cb |urlscan +macro pager ,v |urlscan +macro pager ,v |urlscan diff --git a/config/vim/vimrc b/config/vim/vimrc index 8b1aa53..f0a679d 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -274,15 +274,15 @@ set wildignore=*/doc/*,*/tmp/*,*.o,*.so,*.a,*.swp,*.zip,*/node_modules/*,*/vendo " ctrlp {{{ " ctrlp ignore all stuff in the .gitignore -let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] -let g:ctrlp_working_path_mode = 'rw' -let g:ctrlp_mruf_case_sensitive = 0 - -nnoremap <leader>p :CtrlPTag<CR> +" let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files -co --exclude-standard'] +" let g:ctrlp_working_path_mode = 'rw' +" let g:ctrlp_mruf_case_sensitive = 0 +" +" nnoremap <leader>p :CtrlPTag<CR> " }}} " fzf.vim {{{ -nnoremap <C-p> :Files<CR> +nnoremap <C-p> :GFiles<CR> nnoremap <leader>p :Tags<CR> " }}} @@ -307,7 +307,7 @@ nnoremap <leader>v :call setreg("\"", system("xclip -selection clipboard -o"))<C let g:c_formatter_42_format_on_save = 0 -let g:gutentags_ctags_exclude = ['doc/*', 'Makefile', '.mypy_cache', '.tox'] +let g:gutentags_ctags_exclude = ['doc/*', 'docs/*', 'Makefile', '.mypy_cache', '.pytest_cache', '.tox', 'build/*', 'dist/*'] " let g:gutentags_ctags_exclude_wildignore = 1 let g:goyo_height = 90 |
