Update from work.
This commit is contained in:
parent
f6e7d2a2a5
commit
7d9eb98f0a
8 changed files with 19 additions and 8 deletions
9
home/.config/cspell/config.yaml
Normal file
9
home/.config/cspell/config.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
|
||||||
|
version: "0.2"
|
||||||
|
#dictionaryDefinitions:
|
||||||
|
# - name: custom-words
|
||||||
|
# path: "~/.alex-environ/.home/cspell/custom-words.txt"
|
||||||
|
# addWords: true
|
||||||
|
#dictionaries:
|
||||||
|
# - custom-words
|
0
home/.config/cspell/custom-words.txt
Normal file
0
home/.config/cspell/custom-words.txt
Normal file
|
@ -28,7 +28,7 @@ limit-inference-results=100
|
||||||
|
|
||||||
# List of plugins (as comma separated values of python modules names) to load,
|
# List of plugins (as comma separated values of python modules names) to load,
|
||||||
# usually to register additional checkers.
|
# usually to register additional checkers.
|
||||||
load-plugins=
|
#load-plugins=pylint_django
|
||||||
|
|
||||||
# Pickle collected data for later comparisons.
|
# Pickle collected data for later comparisons.
|
||||||
persistent=yes
|
persistent=yes
|
||||||
|
|
|
@ -19,9 +19,7 @@
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
|
|
||||||
[core]
|
|
||||||
hooksPath = ~/.alex-environ/private/home/git_hooks
|
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
adog = log --all --decorate --oneline --graph
|
adog = log --all --decorate --oneline --graph
|
||||||
|
[rerere]
|
||||||
|
enabled = true
|
||||||
|
|
|
@ -22,7 +22,7 @@ ssh_node() {
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ns=default
|
ns=kube-system
|
||||||
pod=$(
|
pod=$(
|
||||||
kubectl create -n "$ns" -o name "$@" -f - <<EOF
|
kubectl create -n "$ns" -o name "$@" -f - <<EOF
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
@ -35,7 +35,7 @@ spec:
|
||||||
nodeName: $node
|
nodeName: $node
|
||||||
containers:
|
containers:
|
||||||
- name: ssh-node
|
- name: ssh-node
|
||||||
image: busybox
|
image: rancherlabs/swiss-army-knife
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command: ["chroot", "/host"]
|
command: ["chroot", "/host"]
|
||||||
tty: true
|
tty: true
|
||||||
|
|
|
@ -43,6 +43,9 @@ let g:ale_fortran_gcc_use_free_form = 0
|
||||||
"JSON
|
"JSON
|
||||||
let g:ale_json_jq_options = '--sort-keys'
|
let g:ale_json_jq_options = '--sort-keys'
|
||||||
|
|
||||||
|
" Spell checking
|
||||||
|
let g:ale_cspell_options = '--config ~/.alex-envion/home/.config/cspell/config.yaml'
|
||||||
|
|
||||||
"""Base Settings for COC
|
"""Base Settings for COC
|
||||||
let g:coc_config_home = '~/.alex-environ/home/.vimrc.d/coc'
|
let g:coc_config_home = '~/.alex-environ/home/.vimrc.d/coc'
|
||||||
let g:coc_global_extensions = ['coc-jedi', 'coc-rust-analyzer', 'coc-tsserver', 'coc-json', 'coc-htmldjango']
|
let g:coc_global_extensions = ['coc-jedi', 'coc-rust-analyzer', 'coc-tsserver', 'coc-json', 'coc-htmldjango']
|
||||||
|
|
2
private
2
private
|
@ -1 +1 @@
|
||||||
Subproject commit 0e34233ad56224b2096022a2c8b0f4b4bd87d2d0
|
Subproject commit 2ede7f6075713363089e95f70d4dc4241a323888
|
|
@ -8,3 +8,4 @@ vint
|
||||||
|
|
||||||
from npm -g
|
from npm -g
|
||||||
fixjson
|
fixjson
|
||||||
|
cspell
|
||||||
|
|
Loading…
Reference in a new issue