mirror of
				https://github.com/mitchell/dotfiles.git
				synced 2025-11-03 21:25:26 +00:00 
			
		
		
		
	Change default FZF and Ack command; add webstorm func
This commit is contained in:
		
							parent
							
								
									c0ecbb99ee
								
							
						
					
					
						commit
						ee487f10a3
					
				| 
						 | 
					@ -1,6 +1,8 @@
 | 
				
			||||||
# This file contains fish universal variable definitions.
 | 
					# This file contains fish universal variable definitions.
 | 
				
			||||||
# VERSION: 3.0
 | 
					# VERSION: 3.0
 | 
				
			||||||
SETUVAR --export AWS_SDK_LOAD_CONFIG:true
 | 
					SETUVAR --export AWS_SDK_LOAD_CONFIG:true
 | 
				
			||||||
 | 
					SETUVAR --export FZF_CTRL_T_COMMAND:ag\x20\x2d\x2dhidden\x20\x2d\x2dignore\x20\x2egit\x20\x2dg\x20\x22\x22
 | 
				
			||||||
 | 
					SETUVAR --export FZF_DEFAULT_COMMAND:ag\x20\x2d\x2dhidden\x20\x2d\x2dignore\x20\x2egit\x20\x2dg\x20\x22\x22
 | 
				
			||||||
SETUVAR fish_color_autosuggestion:586e75
 | 
					SETUVAR fish_color_autosuggestion:586e75
 | 
				
			||||||
SETUVAR fish_color_cancel:\x2dr
 | 
					SETUVAR fish_color_cancel:\x2dr
 | 
				
			||||||
SETUVAR fish_color_command:93a1a1
 | 
					SETUVAR fish_color_command:93a1a1
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										3
									
								
								.config/fish/functions/webstorm.fish
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								.config/fish/functions/webstorm.fish
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					function webstorm
 | 
				
			||||||
 | 
					    open -a Webstorm .
 | 
				
			||||||
 | 
					end
 | 
				
			||||||
							
								
								
									
										3
									
								
								.vimrc
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								.vimrc
									
									
									
									
									
								
							| 
						 | 
					@ -45,11 +45,14 @@ nnoremap <C-p> :FZF<cr>
 | 
				
			||||||
let g:gruvbox_italic=1
 | 
					let g:gruvbox_italic=1
 | 
				
			||||||
colorscheme gruvbox
 | 
					colorscheme gruvbox
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					let g:ackprg = 'ag --nogroup --nocolor --column'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let g:lightline = {
 | 
					let g:lightline = {
 | 
				
			||||||
\   'colorscheme': 'gruvbox',
 | 
					\   'colorscheme': 'gruvbox',
 | 
				
			||||||
\}
 | 
					\}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
let g:ale_linters = {
 | 
					let g:ale_linters = {
 | 
				
			||||||
 | 
					\   'javascript': ['tsserver'],
 | 
				
			||||||
\   'css': ['csslint'],
 | 
					\   'css': ['csslint'],
 | 
				
			||||||
\   'go': ['golint', 'go vet', 'gopls'],
 | 
					\   'go': ['golint', 'go vet', 'gopls'],
 | 
				
			||||||
\   'typescript': ['tslint', 'tsserver', 'typecheck'],
 | 
					\   'typescript': ['tslint', 'tsserver', 'typecheck'],
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue