Merge branch 'master' of https://gitee.com/klesh/dotfiles
This commit is contained in:
commit
766dd34e14
|
@ -115,6 +115,7 @@ alias kgd="k get deployment"
|
|||
alias ked="k edit deployment"
|
||||
alias kgp="k get pod -o 'custom-columns=NAME:.metadata.name,IMG:.spec.containers[*].image,STATUS:.status.phase'"
|
||||
alias kl="k logs -f --all-containers"
|
||||
alias issh='ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null"'
|
||||
|
||||
|
||||
source-file-if-exists ~/.profile.fish
|
||||
|
|
|
@ -90,10 +90,10 @@ Plug 'editorconfig/editorconfig-vim'
|
|||
Plug 'tpope/vim-surround'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
Plug 'neoclide/coc-json', {'do': 'yarn install --frozen-lockfile'}
|
||||
Plug 'iamcco/coc-vimlsp', {'do': 'yarn install --frozen-lockfile'}
|
||||
Plug 'neoclide/coc-python', {'do': 'yarn install --frozen-lockfile'}
|
||||
Plug 'weirongxu/coc-explorer', {'do': 'yarn install --frozen-lockfile'}
|
||||
Plug 'neoclide/coc-json', {'do': 'yarnpkg install --frozen-lockfile'}
|
||||
Plug 'iamcco/coc-vimlsp', {'do': 'yarnpkg install --frozen-lockfile'}
|
||||
Plug 'neoclide/coc-python', {'do': 'yarnpkg install --frozen-lockfile'}
|
||||
Plug 'weirongxu/coc-explorer', {'do': 'yarnpkg install --frozen-lockfile'}
|
||||
Plug 'liuchengxu/eleline.vim'
|
||||
Plug 'tpope/vim-fugitive' " git 功能
|
||||
Plug 'scrooloose/nerdcommenter'
|
||||
|
|
|
@ -17,8 +17,9 @@ function kcc { k config get-contexts $args }
|
|||
function kcu { k config use-context $args}
|
||||
function kgd { k get deployment $args}
|
||||
function ked { k edit deployment $args}
|
||||
function kgp { k k get pod -o 'custom-columns=NAME:.metadata.name,IMG:.spec.containers[*].image,STATUS:.status.phase' $args}
|
||||
function kgp { k get pod -o 'custom-columns=NAME:.metadata.name,IMG:.spec.containers[*].image,STATUS:.status.phase' $args}
|
||||
function kl { k logs -f --all-containers $args}
|
||||
function issh { ssh -o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null" $args }
|
||||
|
||||
|
||||
function dp {
|
||||
|
|
Loading…
Reference in New Issue
Block a user