mirror of
				https://tildegit.org/ben/dotfiles.git
				synced 2025-08-10 05:02:03 +00:00 
			
		
		
		
	start over with vim. add ~/bin
This commit is contained in:
		
							parent
							
								
									f6fcd7ffdd
								
							
						
					
					
						commit
						677cf422c3
					
				
							
								
								
									
										10
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								Makefile
									
									
									
									
									
								
							@ -16,7 +16,7 @@ endif
 | 
				
			|||||||
install:
 | 
					install:
 | 
				
			||||||
	@make $(UNAME)
 | 
						@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
 | 
					Windows: bash git vim
 | 
				
			||||||
Other: bash git vim
 | 
					Other: bash git vim
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -31,6 +31,7 @@ clean:
 | 
				
			|||||||
	stow -t "$$HOME" -D byobu
 | 
						stow -t "$$HOME" -D byobu
 | 
				
			||||||
	stow -t "$$HOME" -D weechat
 | 
						stow -t "$$HOME" -D weechat
 | 
				
			||||||
	stow -t "$$HOME" -D gnupg
 | 
						stow -t "$$HOME" -D gnupg
 | 
				
			||||||
 | 
						stow -t "$$HOME" -D bin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bash:
 | 
					bash:
 | 
				
			||||||
	@printf "$(YELLOW)--- bash -----------------------------------------------\n$(RESET)"
 | 
						@printf "$(YELLOW)--- bash -----------------------------------------------\n$(RESET)"
 | 
				
			||||||
@ -74,5 +75,10 @@ gnupg:
 | 
				
			|||||||
	chmod 700 "$$HOME/.gnupg"
 | 
						chmod 700 "$$HOME/.gnupg"
 | 
				
			||||||
	stow -t "$$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
									
								
							
							
						
						
									
										9
									
								
								bin/bin/upload-screenshot
									
									
									
									
									
										Executable 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"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -29,3 +29,4 @@ SET fish_pager_color_completion:\x1d
 | 
				
			|||||||
SET fish_pager_color_description:B3A06D\x1eyellow
 | 
					SET fish_pager_color_description:B3A06D\x1eyellow
 | 
				
			||||||
SET fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
 | 
					SET fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
 | 
				
			||||||
SET fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
 | 
					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
									
								
							
							
						
						
									
										30
									
								
								vim/.vimrc
									
									
									
									
									
										Normal 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:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user