Update

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-04 02:50:50 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2025-08-04 02:50:50 +0200
Commit 561c2d277954c08f90d9614ea7a4eef74ebb1c6e (patch)
-rwxr-xr-x .shenanigans.sh 7
-rw-r--r-- .vimrc 6
2 files changed, 3 insertions, 10 deletions
diff --git a/.shenanigans.sh b/.shenanigans.sh
...
77
	rm -Rf /tmp/$SNAPSHOT
77
	rm -Rf /tmp/$SNAPSHOT
78
}
78
}
79
  
79
  
80
pushcode() {
  
81
	find ~/Projects/ -type f -name "*.fossil" | while read -r file; do
  
82
		s3cmd put "$file" s3://vault/code/
  
83
		s3cmd setacl s3://vault/code/$(basename $file) --acl-public
  
84
	done
  
85
}
  
86
  
  
87
screenrecord() {
80
screenrecord() {
88
	ffmpeg -f x11grab -s 3840x2560 -i :0.0 -r 60 -vcodec h264_nvenc -preset fast ~/Videos/$(date +%Y-%m-%d-%H-%M-%S).mp4
81
	ffmpeg -f x11grab -s 3840x2560 -i :0.0 -r 60 -vcodec h264_nvenc -preset fast ~/Videos/$(date +%Y-%m-%d-%H-%M-%S).mp4
89
}
82
}
diff --git a/.vimrc b/.vimrc
...
3
  
3
  
4
call plug#begin()
4
call plug#begin()
5
	Plug 'tpope/vim-commentary'
5
	Plug 'tpope/vim-commentary'
6
	Plug 'airblade/vim-gitgutter'
6
	Plug 'mitjafelicijan/sniper.vim'
7
	Plug 'ctrlpvim/ctrlp.vim'
7
	Plug 'ctrlpvim/ctrlp.vim'
8
call plug#end()
8
call plug#end()
9
  
9
  
10
set path+=** laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4
10
set path+=** laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4
11
set number relativenumber autoindent cursorline ignorecase signcolumn=yes
11
set number relativenumber autoindent cursorline ignorecase hlsearch incsearch 
12
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
12
set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
13
set hlsearch incsearch backspace=indent,eol,start completeopt=menuone
13
set backspace=indent,eol,start completeopt=menuone
14
colorscheme wildcharm
14
colorscheme wildcharm
15
  
15
  
16
nnoremap <C-Right> :bnext<cr>
16
nnoremap <C-Right> :bnext<cr>
...