This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| { | |
| "LazyVim/LazyVim", | |
| opts = { | |
| colorscheme = "catppuccin-mocha", | |
| }, | |
| }, | |
| { | |
| "mg979/vim-visual-multi", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # requires: choco, winget, nodejs and git | |
| # you can copy paste into terminal (powershell) | |
| # Install Chocolatey if it's not already installed | |
| if (-Not (Get-Command choco -ErrorAction SilentlyContinue)) { | |
| Set-ExecutionPolicy Bypass -Scope Process -Force | |
| [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 | |
| Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Update and upgrade the system | |
| sudo pacman -Syu --noconfirm | |
| # Install essential development tools | |
| sudo pacman -S --noconfirm --needed base-devel | |
| # Install common utilities | |
| sudo pacman -S --noconfirm base-devel procps-ng curl file git make luarocks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey >=2.0 | |
| #HotIf !ModifierPressed() | |
| CapsLock::Return | |
| CapsLock & j::sendKeyWithModifiers("Left") | |
| CapsLock & k::sendKeyWithModifiers("Down") | |
| CapsLock & l::sendKeyWithModifiers("Right") | |
| CapsLock & i::sendKeyWithModifiers("Up") | |
| CapsLock & h::sendKeyWithModifiers("Home") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Plugins | |
| set surround | |
| set highlightedyank | |
| set NERDTree | |
| set multiple-cursors | |
| " set commentary | |
| set easymotion | |
| set vim-paragraph-motion | |
| set textobj-indent | |
| set textobj-entire |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install nerd fonts: | |
| declare -a fonts=( | |
| # BitstreamVeraSansMono | |
| # CodeNewRoman | |
| # DroidSansMono | |
| FiraCode | |
| FiraMono | |
| # Go-Mono | |
| # Hack | |
| # Hermit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install general stuff | |
| sudo dnf update -y && | |
| sudo dnf upgrade -y && | |
| sudo dnf install -y make automake gcc gcc-c++ && | |
| sudo dnf install -y curl dnsutils git make htop && | |
| sudo dnf install -y lsb-release net-tools && | |
| sudo dnf install -y sudo unzip vim neovim wget zsh openssl openssh-server && | |
| sudo dnf install -y autojump-zsh powerline fonts-powerline | |
| sudo dnf install -y fd-find ripgrep lolcat && | |
| sudo dnf install -y rust cargo python pip && |