aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.shenanigans.sh2
-rw-r--r--.vimrc7
2 files changed, 6 insertions, 3 deletions
diff --git a/.shenanigans.sh b/.shenanigans.sh
index 6b37525..c2ea46a 100755
--- a/.shenanigans.sh
+++ b/.shenanigans.sh
@@ -40,6 +40,8 @@ if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then
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
index ee7b0a1..225cf3b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,12 +1,13 @@
1set nocompatible
2
1call plug#begin() 3call 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'
6call plug#end() 7call plug#end()
7 8
8set nocompatible laststatus=2 encoding=utf8 spelllang=en_us 9set laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4
9set number relativenumber autoindent signcolumn=yes cursorline ignorecase 10set number relativenumber autoindent cursorline ignorecase signcolumn=yes
10set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 11set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
11colorscheme wildcharm 12colorscheme wildcharm
12 13