Update
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-03-14 19:05:29 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-03-14 19:05:29 +0100 |
| Commit | 2fc6e2245701c92139bb9c7455c5953f739f65ca (patch) |
|
-rwxr-xr-x |
.shenanigans.sh | 2 | |
-rw-r--r-- |
.vimrc | 7 |
2 files changed, 6 insertions, 3 deletions
| diff --git a/.shenanigans.sh b/.shenanigans.sh | |||
| ... | |||
| 40 | alias tmux='tmux -u' |
40 | alias tmux='tmux -u' |
| 41 | alias server='python3 -m http.server 6969' |
41 | alias server='python3 -m http.server 6969' |
| 42 | alias newsboat='newsboat -r -u ~/.feeds.txt' |
42 | alias newsboat='newsboat -r -u ~/.feeds.txt' |
| 43 | alias gg='lazygit' |
||
| 44 | alias gd='lazydocker' |
||
| 43 | 45 | ||
| 44 | # Custom folder jump commands. |
46 | # Custom folder jump commands. |
| 45 | alias p='cd ~/Vault/projects' |
47 | alias p='cd ~/Vault/projects' |
| ... | |||
| diff --git a/.vimrc b/.vimrc | |||
| 1 | set nocompatible |
||
| 2 | |||
| 1 | call plug#begin() |
3 | call plug#begin() |
| 2 | Plug 'tpope/vim-fugitive' |
||
| 3 | Plug 'tpope/vim-commentary' |
4 | Plug 'tpope/vim-commentary' |
| 4 | Plug 'ctrlpvim/ctrlp.vim' |
5 | Plug 'ctrlpvim/ctrlp.vim' |
| 5 | Plug 'dense-analysis/ale' |
6 | Plug 'dense-analysis/ale' |
| 6 | call plug#end() |
7 | call plug#end() |
| 7 | 8 | ||
| 8 | set nocompatible laststatus=2 encoding=utf8 spelllang=en_us |
9 | set laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4 |
| 9 | set number relativenumber autoindent signcolumn=yes cursorline ignorecase |
10 | set number relativenumber autoindent cursorline ignorecase signcolumn=yes |
| 10 | set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
11 | set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 |
| 11 | colorscheme wildcharm |
12 | colorscheme wildcharm |
| 12 | 13 | ||
| ... | |||