Cleanup
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-05-05 20:43:54 +0200 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-05-05 20:43:54 +0200 |
| Commit | d9042522aacd8c9172af0b383976d42918ec44c3 (patch) |
|
-rwxr-xr-x |
shenanigans.sh | 6 | |
-rw-r--r-- |
vimrc | 4 |
2 files changed, 4 insertions, 6 deletions
| diff --git a/shenanigans.sh b/shenanigans.sh | |||
| ... | |||
| 36 | alias grep='grep --color=always' |
36 | alias grep='grep --color=always' |
| 37 | alias less='less -R' |
37 | alias less='less -R' |
| 38 | alias gg='lazygit' |
38 | alias gg='lazygit' |
| 39 | alias tmux='tmux -u' |
||
| 39 | alias server='python3 -m http.server 6969' |
40 | alias server='python3 -m http.server 6969' |
| 40 | 41 | ||
| 41 | # Custom folder jump commands. |
42 | # Custom folder jump commands. |
| ... | |||
| 47 | 48 | ||
| 48 | # Additional path settings. |
49 | # Additional path settings. |
| 49 | 50 | ||
| 50 | export PATH=$HOME/.local/bin:$PATH |
51 | export PATH=$HOME/Applications:$PATH |
| 51 | export PATH=$HOME/go/bin:$PATH |
52 | export PATH=$HOME/go/bin:$PATH |
| 52 | export PATH=$PATH:/usr/local/go/bin |
53 | export PATH=/usr/local/go/bin:$PATH |
| 54 | export PATH=$HOME/Bitcoin/bitcoin-27.0/bin:$PATH |
||
| 53 | 55 | ||
| 54 | # History and search. Stolen from J. |
56 | # History and search. Stolen from J. |
| 55 | 57 | ||
| ... | |||
| diff --git a/vimrc b/vimrc | |||
| ... | |||
| 3 | set nocompatible |
3 | set nocompatible |
| 4 | syntax enable |
4 | syntax enable |
| 5 | 5 | ||
| 6 | " Theme. |
||
| 7 | set background=dark |
||
| 8 | hi Normal ctermbg=233 |
||
| 9 | |||
| 10 | " Sane defaults. |
6 | " Sane defaults. |
| 11 | set path+=** |
7 | set path+=** |
| 12 | set relativenumber |
8 | set relativenumber |
| ... | |||