|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| ... |
| 48 |
export HISTSIZE= |
48 |
export HISTSIZE= |
| 49 |
export HISTFILESIZE= |
49 |
export HISTFILESIZE= |
| 50 |
export HISTFILE=~/.bash_history_infinite |
50 |
export HISTFILE=~/.bash_history_infinite |
| 51 |
PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}" |
51 |
PROMPT_COMMAND="history -a; ${PROMPT_COMMAND}" |
|
|
52 |
# PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}" |
| 52 |
bind '"\e[A": history-search-backward' |
53 |
bind '"\e[A": history-search-backward' |
| 53 |
bind '"\e[B": history-search-forward' |
54 |
bind '"\e[B": history-search-forward' |
| 54 |
export HSTR_CONFIG=hicolor |
55 |
export HSTR_CONFIG=hicolor |
| ... |
| 96 |
printf "%-18s %s\n" "Brisbane:" "$(TZ='Australia/Brisbane' date +'%a %H:%M')" |
97 |
printf "%-18s %s\n" "Brisbane:" "$(TZ='Australia/Brisbane' date +'%a %H:%M')" |
| 97 |
printf "%-18s %s\n" "San Francisco:" "$(TZ='America/Los_Angeles' date +'%a %H:%M')" |
98 |
printf "%-18s %s\n" "San Francisco:" "$(TZ='America/Los_Angeles' date +'%a %H:%M')" |
| 98 |
printf "%-18s %s\n" "New York:" "$(TZ='America/New_York' date +'%a %H:%M')" |
99 |
printf "%-18s %s\n" "New York:" "$(TZ='America/New_York' date +'%a %H:%M')" |
| 99 |
|
|
|
| 100 |
} |
100 |
} |
|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 13 |
set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes |
13 |
set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes |
| 14 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
14 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
| 15 |
set backspace=indent,eol,start completeopt=menuone path+=** |
15 |
set backspace=indent,eol,start completeopt=menuone path+=** |
| 16 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw |
16 |
set foldmethod=syntax foldlevel=99 foldopen= lazyredraw scrolloff=10 |
| 17 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
17 |
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so |
| 18 |
set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case |
18 |
set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case |
| 19 |
colorscheme wildcharm |
19 |
colorscheme wildcharm |
| ... |
| 35 |
nnoremap <leader>t :term<CR> |
35 |
nnoremap <leader>t :term<CR> |
| 36 |
nnoremap <Leader>q :nohlsearch<CR> |
36 |
nnoremap <Leader>q :nohlsearch<CR> |
| 37 |
nnoremap <Leader>e :ALEPopulateQuickfix<CR>:sleep 100m<CR>:copen<CR> |
37 |
nnoremap <Leader>e :ALEPopulateQuickfix<CR>:sleep 100m<CR>:copen<CR> |
| 38 |
" nnoremap <leader>w :vimgrep /<C-r><C-w>/gj **/*<CR>:copen<CR> |
|
|
| 39 |
|
|
|
| 40 |
nnoremap <leader>w :silent! grep! <cword> \| cwindow \| redraw!<CR> |
38 |
nnoremap <leader>w :silent! grep! <cword> \| cwindow \| redraw!<CR> |
| 41 |
|
|
|
| 42 |
|
39 |
|
| 43 |
nmap <silent> gr :ALEFindReferences -quickfix<CR>:sleep 100m<CR>:copen<CR> |
40 |
nmap <silent> gr :ALEFindReferences -quickfix<CR>:sleep 100m<CR>:copen<CR> |
| 44 |
nmap <silent> gd :ALEGoToDefinition<CR> |
41 |
nmap <silent> gd :ALEGoToDefinition<CR> |
| 45 |
nmap <silent> re :ALERename<CR> |
42 |
nmap <silent> re :ALERename<CR> |
| 46 |
|
43 |
|
| 47 |
let g:ctrlp_use_caching = 0 |
44 |
let g:ctrlp_use_caching = 0 |
| 48 |
" let g:ctrlp_working_path_mode = '' |
|
|
| 49 |
let g:ctrlp_working_path_mode = 'ra' |
45 |
let g:ctrlp_working_path_mode = 'ra' |
| 50 |
let g:ale_hover_to_floating_preview = 1 |
46 |
let g:ale_hover_to_floating_preview = 1 |
| 51 |
let g:ale_detail_to_floating_preview = 1 |
47 |
let g:ale_detail_to_floating_preview = 1 |
| ... |