Update
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-03-11 03:02:22 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-03-11 03:02:22 +0100 |
| Commit | 05761911c2b647f727e773016d494940cee28f72 (patch) |
|
-rwxr-xr-x |
.shenanigans.sh | 7 | |
-rw-r--r-- |
.vimrc | 3 |
2 files changed, 6 insertions, 4 deletions
| diff --git a/.shenanigans.sh b/.shenanigans.sh | |||
| 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 ripgrep jq |
3 | # s3cmd xmlstarlet htop nvtop tmux xclip mc ripgrep jq pipx |
| 4 | # stow rsync entr vim xxd sbcl rlwrap podman podman-compose |
4 | # stow rsync entr vim xxd sbcl rlwrap podman podman-compose |
| 5 | # clang clang-tidy clang-toolsi-extra clangd clang-analyzer |
5 | # clang clang-tidy clang-tools-extra clangd clang-analyzer |
| 6 | # Additonal stuff: |
||
| 7 | # pipx install pyright |
||
| 8 | # go install golang.org/x/tools/gopls@latest |
||
| 6 | 9 | ||
| 7 | # Only run if the script is being sourced (bashrc). |
10 | # Only run if the script is being sourced (bashrc). |
| 8 | if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
11 | if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
| ... | |||
| diff --git a/.vimrc b/.vimrc | |||
| ... | |||
| 5 | Plug 'mitjafelicijan/ungabunga' |
5 | Plug 'mitjafelicijan/ungabunga' |
| 6 | call plug#end() |
6 | call plug#end() |
| 7 | 7 | ||
| 8 | set nocompatible laststatus=2 |
8 | set nocompatible laststatus=2 encoding=utf8 spelllang=en_us |
| 9 | set number relativenumber autoindent signcolumn=yes cursorline ignorecase |
9 | set number relativenumber autoindent signcolumn=yes cursorline ignorecase |
| 10 | set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
10 | set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
| 11 | set encoding=utf8 spelllang=en_us |
||
| 12 | colorscheme ungabunga |
11 | colorscheme ungabunga |
| 13 | 12 | ||
| 14 | nnoremap <C-Right> :bnext<cr> |
13 | nnoremap <C-Right> :bnext<cr> |
| ... | |||