Compare commits

..

No commits in common. "e17381226766d49f66e488fb3c451c9aa04e9362" and "6e2364fa89ecf9a97009d99cc2c2c6b89e01baae" have entirely different histories.

2 changed files with 10 additions and 12 deletions

View File

@ -654,9 +654,6 @@ au BufNewFile,BufRead *.mikrotik setfiletype routeros
" Ebuild
au BufNewFile,BufRead,BufWritePre *.ebuild let g:shfmt_extra_args = '-ci -sr -s'
" TOML
autocmd BufWritePre *.toml silent! undojoin | Neoformat taplo
" Terrafrom
autocmd BufWritePre *.tf lua vim.lsp.buf.format()
autocmd BufWritePre *.tfvars lua vim.lsp.buf.format()

View File

@ -113,6 +113,7 @@ function install_node(){
function install_pyright() {
# Install pyright
sudo npm -s -g i pyright --force
$pip install black $PIPEXTPRE
}
function install_mdformat() {
@ -239,6 +240,11 @@ function install_gopls() {
GO111MODULE=on go install golang.org/x/tools/gopls@latest
}
function install_black() {
# Install black
$pip install black $PIPEXTPRE
}
function install_ansible() {
# Install Ansible
$pip install ansible ansible-lint ansible-core $PIPEXTPRE
@ -279,7 +285,7 @@ function install_ytdlp() {
function install_spotifydl() {
# Install spotify_dl
$pip install spotdl $PIPEXTPRE
$pip install spotify_dl $PIPEXTPRE
}
function update() {
@ -349,9 +355,9 @@ function install_kubernetes() {
LINK=""
CURRENT_VERSION=""
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
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() {
command_start update_pip
command_start install_neovim_module_for_python
@ -445,6 +446,7 @@ function main() {
command_start install_terraform_stable
command_start install_terragrunt
command_start install_azure_cli
command_start install_black
command_start install_ansible
command_start install_meraki_ansible
command_start install_ansible-language-server
@ -457,7 +459,6 @@ function main() {
command_start install_kubernetes
command_start install_rust
command_start install_tss_client
command_start install_taplo
command_start update
}