The Nvim configuration folder in windows is in ~/AppData/Local/nvim
. Copy the nvim folder in there
and create a folder undodir
in the same directory. In case of using windows the nvim configuration goes
inside ~/.config/nvim
Install vim-plug
First is necessary to install vim-plug for that run the following command:
curl -flo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
For telescope to work you need to install riggrep, if you are on windows
you can do choco install ripgrep
Also you will need sharkdp/fd
for windows you can do choco install fd
-
Install oh-my-posh from winget
winget install JanDeDobbeleer.OhMyPosh
-
Install the CaskaydiaCove Nerd Font from link
- Download the zip
- Extract the zip
- Open the folder C:/Windows/Font and drag and drop the installed fonts in there.
-
Config your terminal to use the CaskaydiaCove font.
Run the following command
Install-Module -Name Terminal-Icons -Repository PSGallery
This module allows to have auto-complete in powershell
Install-Module -Name PSReadLine -RequiredVersion 2.2.0-beta3 -AllowPrerelease
To include the profile to powershell you need to first create the default profile where powershell normally look for it you can review that doing:
echo $PROFILE
Create the file if doesn't exist and then you can execute from there the profile from this repo. The profile is just a powershell script, so it can execute other powershell scripts
NewLocation\ps_profile.ps1