Compare commits

..

3 Commits

Author SHA1 Message Date
6ad37bbc1d
Added tfenv installer 2023-06-17 17:10:25 +02:00
f94560519d
Added wrap at nvim config 2023-06-17 17:10:15 +02:00
43fae92566
Added the mtr 2023-05-11 23:28:36 +02:00
3 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,7 @@ set tabstop=4
set nocompatible set nocompatible
set noshowmode set noshowmode
set noerrorbells set noerrorbells
set nowrap set wrap
set hidden set hidden
set cmdheight=1 set cmdheight=1
set encoding=utf-8 set encoding=utf-8

View File

@ -69,6 +69,7 @@ function install_terraform() {
if [[ "$(uname)" == "Darwin" ]]; then if [[ "$(uname)" == "Darwin" ]]; then
brew install tflint -q brew install tflint -q
brew install tfenv -q brew install tfenv -q
TFENV_ARCH=amd64 tfenv install latest
else else
curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
fi fi

1
.zshrc
View File

@ -144,6 +144,7 @@ if [[ "$(uname)" == "Darwin" ]]; then
alias mpv="mpv --ytdl-raw-options="yes-playlist=" --no-resume-playback --ytdl-format='bestvideo[height<=?1080]+bestaudio/best'" alias mpv="mpv --ytdl-raw-options="yes-playlist=" --no-resume-playback --ytdl-format='bestvideo[height<=?1080]+bestaudio/best'"
alias code="open -a 'Visual Studio Code'" alias code="open -a 'Visual Studio Code'"
alias xclip="pbcopy" alias xclip="pbcopy"
alias mtr="sudo /opt/homebrew/opt/mtr/sbin/mtr"
# Project # Project
alias meraki="cd $HOME/git/ansible_collections/cisco/meraki/" alias meraki="cd $HOME/git/ansible_collections/cisco/meraki/"