|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| ... |
| 2 |
# void-repo-nonfree void-repo-multilib void-repo-multilib-nonfree |
2 |
# void-repo-nonfree void-repo-multilib void-repo-multilib-nonfree |
| 3 |
# file-roller xfce4-plugins thunar-archive-plugin |
3 |
# file-roller xfce4-plugins thunar-archive-plugin |
| 4 |
# lm_sensors conky maim xlockmore rofi picom cwm xclip xsetroot st |
4 |
# lm_sensors conky maim xlockmore rofi picom cwm xclip xsetroot st |
| 5 |
# xss-lock wmctrl zip mc htop entr ack cifs-utils rsync xdotool jq |
5 |
# xss-lock wmctrl zip mc htop entr cifs-utils rsync jq ripgrep |
| 6 |
# clang clang-tools-extra vim git curl tmux hstr tree make cmake |
6 |
# clang clang-tools-extra vim git curl tmux hstr tree make cmake |
| 7 |
# nvtop ctags stow newsboat mpv rsync python3-pipx lazygit fossil |
7 |
# nvtop ctags stow newsboat mpv rsync python3-pipx lazygit tcc |
| 8 |
# Additonal stuff: |
8 |
# Additonal stuff: |
| 9 |
# pipx install pyright |
9 |
# pipx install pyright |
| 10 |
# go install golang.org/x/tools/gopls@latest |
10 |
# go install golang.org/x/tools/gopls@latest |
| ... |
|
diff --git a/.vimrc b/.vimrc
|
| ... |
| 7 |
Plug 'ctrlpvim/ctrlp.vim' |
7 |
Plug 'ctrlpvim/ctrlp.vim' |
| 8 |
call plug#end() |
8 |
call plug#end() |
| 9 |
|
9 |
|
| 10 |
set path+=** laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4 |
10 |
set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4 |
| 11 |
set number relativenumber autoindent cursorline ignorecase hlsearch incsearch |
11 |
set path+=** number autoindent cursorline ignorecase hlsearch incsearch |
| 12 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
12 |
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
| 13 |
set backspace=indent,eol,start completeopt=menuone |
13 |
set backspace=indent,eol,start completeopt=menuone grepprg=rg\ --vimgrep |
| 14 |
colorscheme wildcharm |
14 |
colorscheme wildcharm |
| 15 |
|
15 |
|
| 16 |
nnoremap <C-Right> :bnext<cr> |
16 |
nnoremap <C-Right> :bnext<cr> |
| ... |
| 19 |
nnoremap <C-b> :CtrlPBuffer<cr> |
19 |
nnoremap <C-b> :CtrlPBuffer<cr> |
| 20 |
nnoremap <Leader>q :nohlsearch<cr> |
20 |
nnoremap <Leader>q :nohlsearch<cr> |
| 21 |
nnoremap <Leader>c :silent call system('ctags --c++-kinds=+p -R .')<CR> |
21 |
nnoremap <Leader>c :silent call system('ctags --c++-kinds=+p -R .')<CR> |
| 22 |
nnoremap <leader>g :vimgrepadd /<C-r><C-w>/gj **/*<CR>:copen<CR> |
22 |
nnoremap <leader>r :grep <C-r><C-w><CR>:copen<CR> |
| 23 |
nnoremap <leader>t :vimgrepadd /TODO:\\|FIXME:\\|XXX:/gj **/*<CR>:copen<CR> |
|
|
| 24 |
|
23 |
|
| 25 |
let g:ctrlp_use_caching = 0 |
24 |
let g:ctrlp_use_caching = 0 |
| 26 |
let g:ctrlp_working_path_mode = '' |
25 |
let g:ctrlp_working_path_mode = '' |