add git aliases and fe extensions
This commit is contained in:
parent
a267ba0adf
commit
e842787d16
4 changed files with 15 additions and 4 deletions
|
|
@ -104,6 +104,10 @@ dobenchx() {
|
|||
}
|
||||
alias benchx=dobenchx
|
||||
|
||||
do_killgrep() {
|
||||
ps auxwww | grep $1 | awk '{print $2}' | xargs kill
|
||||
}
|
||||
alias killgrep=do_killgrep
|
||||
#function gvim () {
|
||||
#`which gvim` $* &> /dev/null
|
||||
#}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@
|
|||
"coc-json": ">=1.3.2",
|
||||
"coc-python": ">=1.2.13",
|
||||
"coc-snippets": ">=2.2.3",
|
||||
"coc-svelte": ">=0.1.1",
|
||||
"coc-tailwindcss": ">=0.7.0",
|
||||
"coc-tsserver": ">=1.6.0",
|
||||
"coc-ultisnips": ">=1.2.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
email = me@barakmich.com
|
||||
|
||||
[alias]
|
||||
br = branch -a -v
|
||||
st = status -uno
|
||||
stat = status -uno
|
||||
ci = commit
|
||||
|
|
@ -16,6 +17,8 @@
|
|||
ours = "!f() { git checkout --ours $@ && git add $@; }; f"
|
||||
theirs = "!f() { git checkout --theirs $@ && git add $@; }; f"
|
||||
praise = blame
|
||||
hist = show-branch -a
|
||||
undo-last = reset HEAD^
|
||||
|
||||
[diff]
|
||||
renamelimit = 0
|
||||
|
|
|
|||
7
.vimrc
7
.vimrc
|
|
@ -167,14 +167,15 @@ Plug 'ervandew/supertab'
|
|||
" Plugins for syntax
|
||||
Plug 'lunaru/vim-less'
|
||||
Plug 'hylang/vim-hy', {'for': 'hy'}
|
||||
Plug 'mhartington/nvim-typescript'
|
||||
Plug 'posva/vim-vue'
|
||||
"Plug 'mhartington/nvim-typescript'
|
||||
Plug 'leafOfTree/vim-svelte-plugin'
|
||||
"Plug 'posva/vim-vue'
|
||||
Plug 'Shougo/context_filetype.vim'
|
||||
Plug 'idris-hackers/idris-vim', {'for': 'idris'}
|
||||
Plug 'derekwyatt/vim-scala', {'for': 'scala'}
|
||||
Plug 'hwayne/tla.vim'
|
||||
Plug 'zchee/vim-goasm'
|
||||
Plug 'cappyzawa/starlark.vim'
|
||||
"Plug 'cappyzawa/starlark.vim'
|
||||
|
||||
" Plugins that autocomplete
|
||||
"Plug 'Shougo/deoplete.nvim'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue