start over with vim. add ~/bin

This commit is contained in:
Ben Harris 2018-08-16 19:05:54 -04:00
parent f6fcd7ffdd
commit 677cf422c3
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
5 changed files with 48 additions and 3 deletions

View File

@ -16,7 +16,7 @@ endif
install:
@make $(UNAME)
Linux: bash fish git mutt byobu weechat vim nvim gnupg
Linux: bash fish git mutt byobu weechat vim nvim gnupg bin
Windows: bash git vim
Other: bash git vim
@ -31,6 +31,7 @@ clean:
stow -t "$$HOME" -D byobu
stow -t "$$HOME" -D weechat
stow -t "$$HOME" -D gnupg
stow -t "$$HOME" -D bin
bash:
@printf "$(YELLOW)--- bash -----------------------------------------------\n$(RESET)"
@ -74,5 +75,10 @@ gnupg:
chmod 700 "$$HOME/.gnupg"
stow -t "$$HOME" gnupg
.PHONY: bash fish git vim nvim mutt byobu weechat gnupg clean install Windows Linux Other
bin:
@printf "$(YELLOW)--- bin ------------------------------------------------\n$(RESET)"
stow -t "$$HOME" bin
.PHONY: bash fish git vim nvim mutt byobu weechat gnupg bin clean install Windows Linux Other

9
bin/bin/upload-screenshot Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
rename 's/ /-/g' ~/Pictures/*.png
latest=$(ls -Art ~/Pictures | tail -n 1)
pb "~/Pictures/$latest" | xclip -selection clipboard
notify-send "on yr clipbrd"

View File

@ -29,3 +29,4 @@ SET fish_pager_color_completion:\x1d
SET fish_pager_color_description:B3A06D\x1eyellow
SET fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SET fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
SET fisher_dependency_count:bass\x1egetopts\x1egitignore\x1envm\x1espin

@ -1 +0,0 @@
Subproject commit 1ce5f23997f6dd82235c6936c5c47b3f1d1b4e50

30
vim/.vimrc Normal file
View File

@ -0,0 +1,30 @@
filetype plugin indent on
syntax enable
set autoindent
set backspace=indent,eol,start
set complete-=i
set smarttab
set nrformats-=octal
set incsearch
set laststatus=2
set ruler
set wildmenu
set display+=lastline
set encoding=utf-8
set autoread
set history=1000
set tabpagemax=50
inoremap <C-U> <C-G>u<C-U>
" vim:set ft=vim et sw=2: