|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| ... |
| 4 |
# lm_sensors conky maim xlockmore picom cwm xclip xsetroot xdotool fd |
4 |
# lm_sensors conky maim xlockmore picom cwm xclip xsetroot xdotool fd |
| 5 |
# xss-lock wmctrl zip mc htop entr cifs-utils rsync jq rofi st lynx |
5 |
# xss-lock wmctrl zip mc htop entr cifs-utils rsync jq rofi st lynx |
| 6 |
# clang clang-tools-extra vim git curl tmux hstr tree make cmake gdb |
6 |
# clang clang-tools-extra vim git curl tmux hstr tree make cmake gdb |
| 7 |
# vifm nvtop ctags stow newsboat mpv rsync python3-pipx lazygit tcc |
7 |
# nvtop ctags stow newsboat mpv rsync python3-pipx lazygit tcc lf |
| 8 |
# Additonal stuff: |
8 |
# Additonal stuff: |
| 9 |
# go install golang.org/x/tools/gopls@latest |
9 |
# go install golang.org/x/tools/gopls@latest |
| 10 |
# pipx install pyright mdformat |
10 |
# pipx install pyright mdformat |
| ... |
|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 15 |
set path+=** wildignore+=tags,*.o,*.a,*.so |
15 |
set path+=** wildignore+=tags,*.o,*.a,*.so |
| 16 |
colorscheme wildcharm |
16 |
colorscheme wildcharm |
| 17 |
|
17 |
|
| 18 |
nnoremap <C-Right> :bnext<cr> |
18 |
nnoremap <C-Right> :bnext<CR> |
| 19 |
nnoremap <C-Left> :bprevious<cr> |
19 |
nnoremap <C-Left> :bprevious<CR> |
| 20 |
nnoremap <C-q> :copen<cr> |
20 |
nnoremap <C-q> :copen<CR> |
| 21 |
nnoremap <C-b> :CtrlPBuffer<cr> |
21 |
nnoremap <C-b> :CtrlPBuffer<CR> |
| 22 |
nnoremap <Leader>q :nohlsearch<cr> |
22 |
nnoremap <Leader>q :nohlsearch<CR> |
| 23 |
nnoremap <Leader>c :silent call system('ctags --c++-kinds=+p -R .')<CR> |
23 |
nnoremap <Leader>c :silent call system('ctags --c++-kinds=+p -R .')<CR> |
| 24 |
nnoremap <leader>w :vimgrep /<C-r><C-w>/gj **/*<CR>:copen<CR> |
24 |
nnoremap <leader>w :vimgrep /<C-r><C-w>/gj **/*<CR>:copen<CR> |
| 25 |
nnoremap <C-k> :ALEHover<cr> |
25 |
nnoremap <C-k> :ALEHover<CR> |
| 26 |
nnoremap <C-j> :ALEDetail<cr> |
26 |
nnoremap <C-j> :ALEDetail<CR> |
| 27 |
|
27 |
|
| 28 |
nmap <silent> gr :ALEFindReferences<cr> |
28 |
nmap <silent> gr :ALEFindReferences<CR> |
| 29 |
nmap <silent> gd :ALEGoToDefinition<cr> |
29 |
nmap <silent> gd :ALEGoToDefinition<CR> |
| 30 |
nmap <silent> re :ALERename<cr> |
30 |
nmap <silent> re :ALERename<CR> |
| 31 |
|
31 |
|
| 32 |
let g:ctrlp_use_caching = 0 |
32 |
let g:ctrlp_use_caching = 0 |
| 33 |
let g:ctrlp_working_path_mode = '' |
33 |
let g:ctrlp_working_path_mode = '' |
| ... |