diff --git a/.shenanigans.sh b/.shenanigans.sh index 219498b9cc323d955ff2403d3721559b5ecc02bf..726a878ba9ccc3a94b8c3b9c4a816c23c4427aa0 100755 --- a/.shenanigans.sh +++ b/.shenanigans.sh @@ -77,13 +77,6 @@ rsync -azhv /tmp/$SNAPSHOT /media/Void/Backup rm -Rf /tmp/$SNAPSHOT } -pushcode() { - find ~/Projects/ -type f -name "*.fossil" | while read -r file; do - s3cmd put "$file" s3://vault/code/ - s3cmd setacl s3://vault/code/$(basename $file) --acl-public - done -} - screenrecord() { ffmpeg -f x11grab -s 3840x2560 -i :0.0 -r 60 -vcodec h264_nvenc -preset fast ~/Videos/$(date +%Y-%m-%d-%H-%M-%S).mp4 } diff --git a/.vimrc b/.vimrc index 36c721ecd7373d6517c79690d27f89bc161769e2..b06c20ff468248ac91a10e83b2baad627f8e5c62 100644 --- a/.vimrc +++ b/.vimrc @@ -3,14 +3,14 @@ filetype plugin on call plug#begin() Plug 'tpope/vim-commentary' - Plug 'airblade/vim-gitgutter' + Plug 'mitjafelicijan/sniper.vim' Plug 'ctrlpvim/ctrlp.vim' call plug#end() set path+=** laststatus=2 encoding=utf8 spelllang=en_us tabstop=4 shiftwidth=4 -set number relativenumber autoindent cursorline ignorecase signcolumn=yes +set number relativenumber autoindent cursorline ignorecase hlsearch incsearch set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 -set hlsearch incsearch backspace=indent,eol,start completeopt=menuone +set backspace=indent,eol,start completeopt=menuone colorscheme wildcharm nnoremap :bnext