Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 865 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 865 Bytes

NvChad config on Windows Environment

A pecial thanks to Siduck and the NvChad development team for creating such an incredible distribution for Neovim, making it easier and more enjoyable to customize and enhance our editing experience.

Acknowledgments

Special thanks to Alexis for inspiring parts of my configuration; several sections were built upon your work


If you want to run code like I do in my YouTube videos, add the following script to your $PROFILE:

function RunCode {
    clang++ -std=c++23 .\main.cpp -o main.exe

    if (Test-Path .\main.exe) {
        Start-Process -FilePath ".\main.exe" -ArgumentList "< input.txt"
    } else {
        Write-Host "Compilation failed, executable not found."
    }
}

I have no more ideas, I'll come back later 🙌