Skip to content

Instantly share code, notes, and snippets.

View Halu89's full-sized avatar
🖐️

Halu89

🖐️
View GitHub Profile
@Halu89
Halu89 / .ideavimrc
Created July 6, 2024 21:32
Intellij settings for IdeaVim Plugin
set relativenumber number
set which-key
let g:WhichKey_ShowVimActions = "true"
set timeoutlen=6000
set notimeout
# Show a highlight on the searched items
set hlsearch
Plug 'machakann/vim-highlightedyank'

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@Halu89
Halu89 / setup.sh
Created September 28, 2023 17:00
Linux setup
sudo apt install git -y
sudo apt install zsh -y
chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "alias py=\"python3\"" >> .zshrc
echo "alias ll=\"ls -al\"" >> .zshrc