Compare commits
No commits in common. "e17381226766d49f66e488fb3c451c9aa04e9362" and "6e2364fa89ecf9a97009d99cc2c2c6b89e01baae" have entirely different histories.
e173812267
...
6e2364fa89
@ -654,9 +654,6 @@ au BufNewFile,BufRead *.mikrotik setfiletype routeros
|
|||||||
" Ebuild
|
" Ebuild
|
||||||
au BufNewFile,BufRead,BufWritePre *.ebuild let g:shfmt_extra_args = '-ci -sr -s'
|
au BufNewFile,BufRead,BufWritePre *.ebuild let g:shfmt_extra_args = '-ci -sr -s'
|
||||||
|
|
||||||
" TOML
|
|
||||||
autocmd BufWritePre *.toml silent! undojoin | Neoformat taplo
|
|
||||||
|
|
||||||
" Terrafrom
|
" Terrafrom
|
||||||
autocmd BufWritePre *.tf lua vim.lsp.buf.format()
|
autocmd BufWritePre *.tf lua vim.lsp.buf.format()
|
||||||
autocmd BufWritePre *.tfvars lua vim.lsp.buf.format()
|
autocmd BufWritePre *.tfvars lua vim.lsp.buf.format()
|
||||||
|
@ -113,6 +113,7 @@ function install_node(){
|
|||||||
function install_pyright() {
|
function install_pyright() {
|
||||||
# Install pyright
|
# Install pyright
|
||||||
sudo npm -s -g i pyright --force
|
sudo npm -s -g i pyright --force
|
||||||
|
$pip install black $PIPEXTPRE
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_mdformat() {
|
function install_mdformat() {
|
||||||
@ -239,6 +240,11 @@ function install_gopls() {
|
|||||||
GO111MODULE=on go install golang.org/x/tools/gopls@latest
|
GO111MODULE=on go install golang.org/x/tools/gopls@latest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function install_black() {
|
||||||
|
# Install black
|
||||||
|
$pip install black $PIPEXTPRE
|
||||||
|
}
|
||||||
|
|
||||||
function install_ansible() {
|
function install_ansible() {
|
||||||
# Install Ansible
|
# Install Ansible
|
||||||
$pip install ansible ansible-lint ansible-core $PIPEXTPRE
|
$pip install ansible ansible-lint ansible-core $PIPEXTPRE
|
||||||
@ -279,7 +285,7 @@ function install_ytdlp() {
|
|||||||
|
|
||||||
function install_spotifydl() {
|
function install_spotifydl() {
|
||||||
# Install spotify_dl
|
# Install spotify_dl
|
||||||
$pip install spotdl $PIPEXTPRE
|
$pip install spotify_dl $PIPEXTPRE
|
||||||
}
|
}
|
||||||
|
|
||||||
function update() {
|
function update() {
|
||||||
@ -349,9 +355,9 @@ function install_kubernetes() {
|
|||||||
LINK=""
|
LINK=""
|
||||||
CURRENT_VERSION=""
|
CURRENT_VERSION=""
|
||||||
REMOTE_VERSION=$(curl -L -s https://dl.k8s.io/release/stable.txt)
|
REMOTE_VERSION=$(curl -L -s https://dl.k8s.io/release/stable.txt)
|
||||||
KUBECTL_LOCATION="/opt/homebrew/bin/kubectl"
|
KUBECTL_LOCATION="$HOME/.local/bin/kubectl"
|
||||||
|
|
||||||
[ -f $KUBECTL_LOCATION ] && CURRENT_VERSION=$($KUBECTL_LOCATION version --client | grep --color=no -iEo 'Client Version: v[0-9\.]+' | grep -ioE --color=no 'v[0-9\.]+')
|
[ -f $HOME/.local/bin/kubectl ] && CURRENT_VERSION=$($KUBECTL_LOCATION version --client | grep --color=no -iEo 'Client Version: v[0-9\.]+' | grep -ioE --color=no 'v[0-9\.]+')
|
||||||
|
|
||||||
if [ "$REMOTE_VERSION" == "$CURRENT_VERSION" ]; then
|
if [ "$REMOTE_VERSION" == "$CURRENT_VERSION" ]; then
|
||||||
timestamp "The current version of the kubectl is the same as the newest version"
|
timestamp "The current version of the kubectl is the same as the newest version"
|
||||||
@ -420,11 +426,6 @@ function install_tss_client() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_taplo() {
|
|
||||||
# Install taplo
|
|
||||||
$install taplo
|
|
||||||
}
|
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
command_start update_pip
|
command_start update_pip
|
||||||
command_start install_neovim_module_for_python
|
command_start install_neovim_module_for_python
|
||||||
@ -445,6 +446,7 @@ function main() {
|
|||||||
command_start install_terraform_stable
|
command_start install_terraform_stable
|
||||||
command_start install_terragrunt
|
command_start install_terragrunt
|
||||||
command_start install_azure_cli
|
command_start install_azure_cli
|
||||||
|
command_start install_black
|
||||||
command_start install_ansible
|
command_start install_ansible
|
||||||
command_start install_meraki_ansible
|
command_start install_meraki_ansible
|
||||||
command_start install_ansible-language-server
|
command_start install_ansible-language-server
|
||||||
@ -457,7 +459,6 @@ function main() {
|
|||||||
command_start install_kubernetes
|
command_start install_kubernetes
|
||||||
command_start install_rust
|
command_start install_rust
|
||||||
command_start install_tss_client
|
command_start install_tss_client
|
||||||
command_start install_taplo
|
|
||||||
command_start update
|
command_start update
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user