- vim (Neovim) config
- powershell config
- vim-plug - Vim plugin
- Nerd font - Hack nerd font familty
- Scoop - A command-line installer
- Git for Windows - Git for windows
- Oh My Posh - Prompt theme engine
- Terminal Icons - Folder and file icons
- PSReadLine - Cmdlets for customizing the editing environment, used for autocompletion
- z - Directory jumper
- PSFzf - Fuzzy finder
- Make - Make for windows
- Install Hack nerd font family in Windows system
- Install PowerShell in Microsoft store
- Set default terminal application to "Windows Terminal" in Terminal setting startup tab
- Set acrylic tab row to "On" in Terminal setting appearance tab
- Set color scheme to "One Half Dark" in Terminal setting defaults-appearance tab
- Set font face to "Hack Nerd Font" in Terminal setting defaults-appearance tab
- Set enable acrylic to "On" and set opacity to "to" in Terminal setting defaults-appearance tab
- Open a powershell setting json, copy and paste to my git setting.json
- Install Scoop(Command-line installer)
iwr -useb get.scoop.sh | iexscoop install curl sudo jqcurl 'https://api.inkdrop.app/' | jq . - Install git for windows
winget install -e --id Git.Git - Install oh-my-posh
Install-Module posh-git -Scope CurrentUser -ForceInstall-Module oh-my-posh -Scope CurrentUser -Forcewinget install JanDeDobbeleer.OhMyPosh -s winget - Copy powershell directory in my git in USER.config
- Install Terminal Icons
Install-Module -Name Terminal-Icons -Repository PSGallery -Force - Install z - Directory jumper
Install-Module -Name z -Force - Install PSReadLine - Autocompletion
Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck- Set PSReadLineOption
Set-PSReadLineOption -PredictionSource HistorySet-PSReadLineOption -PredictionViewStyle ListView
- Set PSReadLineOption
- Install Fzf - Fuzzy finder
scoop install fzfInstall-Module -Name PSFzf -Scope CurrentUser -Force- Set PsFzfOption
Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+f' -PSReadlineChordReverseHistory 'Ctrl+r'
- Set PsFzfOption
- Copy and paste nvim directory in user\AppData\Local
- Install visual studio 2022
- Install vim-plugin
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force - Install NodeJS
winget install -e --id OpenJS.NodeJS - Install NVM
scoop install nvm - Move directory to coc.nvim
cd $PROFILE\AppData\Local\nvim-data\plugged - Build coc
npm install - Open a vim and coc install clangd
CocInstall coc-clangd - Install LLVM