aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-03-18 00:15:58 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-03-18 00:15:58 +0100
commit473a42f98b8444cf8213227b4d5ce4d215811ad9 (patch)
treeb9094531d47fed95bd5c60f2b13d1dcfdb112b9c
parent2fc6e2245701c92139bb9c7455c5953f739f65ca (diff)
downloaddotfiles-473a42f98b8444cf8213227b4d5ce4d215811ad9.tar.gz
Update
-rw-r--r--.gitconfig1
-rwxr-xr-x.shenanigans.sh4
-rw-r--r--.vimrc6
3 files changed, 6 insertions, 5 deletions
diff --git a/.gitconfig b/.gitconfig
index 4d3819b..c891552 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -6,6 +6,7 @@
6 editor = vim 6 editor = vim
7[commit] 7[commit]
8 gpgsign = true 8 gpgsign = true
9 verbose = true
9[tag] 10[tag]
10 gpgsign = true 11 gpgsign = true
11[alias] 12[alias]
diff --git a/.shenanigans.sh b/.shenanigans.sh
index c2ea46a..91fa9e1 100755
--- a/.shenanigans.sh
+++ b/.shenanigans.sh
@@ -1,7 +1,7 @@
1# Software list: 1# Software list:
2# git gcc make cmake busybox cifs-utils tree hstr curl 2# git gcc make cmake busybox cifs-utils tree hstr curl
3# s3cmd xmlstarlet htop nvtop tmux xclip mc jq pipx 3# s3cmd xmlstarlet htop nvtop tmux xclip jq pipx newsboat
4# stow rsync entr vim xxd sbcl rlwrap newsboat tig 4# stow rsync entr vim vifm xxd sbcl rlwrap tig
5# clang clang-tidy clang-tools-extra clangd clang-analyzer 5# clang clang-tidy clang-tools-extra clangd clang-analyzer
6# Additonal stuff: 6# Additonal stuff:
7# pipx install pyright 7# pipx install pyright
diff --git a/.vimrc b/.vimrc
index 225cf3b..283f09f 100644
--- a/.vimrc
+++ b/.vimrc
@@ -15,18 +15,18 @@ nnoremap <C-Right> :bnext<cr>
15nnoremap <C-Left> :bprevious<cr> 15nnoremap <C-Left> :bprevious<cr>
16nnoremap <C-q> :copen<cr> 16nnoremap <C-q> :copen<cr>
17nnoremap <C-b> :CtrlPBuffer<cr> 17nnoremap <C-b> :CtrlPBuffer<cr>
18nnoremap <Leader>e :nohlsearch<cr>
18nnoremap <Leader>q :ALEHover<cr> 19nnoremap <Leader>q :ALEHover<cr>
19nnoremap <Leader>w :ALEDetail<cr> 20nnoremap <Leader>w :ALEDetail<cr>
20nnoremap <Leader>e :nohlsearch<CR> 21nnoremap <Leader>gc :r !< % lazycommit<cr>
21 22
22nmap <silent> gr :ALEFindReferences<cr> 23nmap <silent> gr :ALEFindReferences<cr>
23nmap <silent> gd :ALEGoToDefinition<cr> 24nmap <silent> gd :ALEGoToDefinition<cr>
24nmap <silent> re :ALERename<cr> 25nmap <silent> re :ALERename<cr>
25 26
27let g:ctrlp_use_caching = 0
26let g:ale_completion_enabled = 0 28let g:ale_completion_enabled = 0
27let g:ale_hover_to_floating_preview = 1 29let g:ale_hover_to_floating_preview = 1
28let g:ale_detail_to_floating_preview = 1 30let g:ale_detail_to_floating_preview = 1
29let g:ale_virtualtext_cursor = 0 31let g:ale_virtualtext_cursor = 0
30let g:ale_set_quickfix = 1 32let g:ale_set_quickfix = 1
31let g:ctrlp_use_caching = 0
32let g:ale_linters = { 'c': ['clangd'] }