mirror of https://github.com/mitchell/dotfiles.git
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.
|
||||
# VERSION: 3.0
|
||||
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_cancel:\x2dr
|
||||
SETUVAR fish_color_command:93a1a1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
function goland
|
||||
open -a Goland .
|
||||
open -a Goland .
|
||||
end
|
||||
|
||||
|
|
|
@ -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
|
||||
colorscheme gruvbox
|
||||
|
||||
let g:ackprg = 'ag --nogroup --nocolor --column'
|
||||
|
||||
let g:lightline = {
|
||||
\ 'colorscheme': 'gruvbox',
|
||||
\}
|
||||
|
||||
let g:ale_linters = {
|
||||
\ 'javascript': ['tsserver'],
|
||||
\ 'css': ['csslint'],
|
||||
\ 'go': ['golint', 'go vet', 'gopls'],
|
||||
\ 'typescript': ['tslint', 'tsserver', 'typecheck'],
|
||||
|
|
Loading…
Reference in New Issue