-
Notifications
You must be signed in to change notification settings - Fork 9
Getting Started
Mayank Kumar Jha edited this page Sep 21, 2025
·
3 revisions
Welcome to FKvim, a modern, fast, and beautiful Neovim configuration built to supercharge your development experience. This guide will help you set up FKvim in minutes.
Make sure you have the following installed before proceeding:
| Tool | Version | Description |
|---|---|---|
| Neovim | >= 0.9.0 |
The core editor |
| Git | Latest | For managing FKvim and plugin cloning |
| Nerd Font | Recommended | For icons in the status line and UI |
| Curl/Wget | Optional | For simplified automated installation |
💡 Optional: Use a terminal that supports true color and transparency for best visuals.
You can install FKvim using Git:
mv ~/.config/nvim ~/.config/nvim.backup
mv ~/.local/share/nvim ~/.local/share/nvim.backupgit clone https://github.com/Flash-codes/fkvim.git ~/.config/nvimthen install using the following command
git clone https://github.com/Flash-codes/fkvim.git temp/FKvim
mkdir -p ~/.config/nvim
mv temp/Fkvim/* ~/.config/nvim/
rm -rf temp/FKvimTry only if 2 methods isn't working
If you want to use fkvim alias then open terminal and add following lines
echo "alias fk='nvim'" >> ~/.zshrc
echo "alias fkall='nvim .'" >> ~/.zshrc
echo "alias fk.config='fkall ~/.config/nvim/'" >> ~/.zshrc
source ~/.zshrc| Alias | Expands To | Description |
|---|---|---|
fk |
nvim |
Opens Neovim |
fkall |
nvim . |
Opens Neovim in the current directory |
fk.config |
fkall ~/.config/nvim/ |
Opens your Neovim config directory in Neovim |
Just open Neovim normally:
fkvimIf you have not defined alias then
nvimThe plugins will auto-install on first launch. 🚀
If nothing happens, run
:Lazyand hit "Install".
rm -rf ~/.config/nvim
rm -rf ~/.local/state/nvim
rm -rf ~/.local/share/nvimrm -rf ~/.var/app/io.neovim.nvim/config/nvim
rm -rf ~/.var/app/io.neovim.nvim/data/nvim
rm -rf ~/.var/app/io.neovim.nvim/.local/state/nvimrd -r ~\AppData\Local\nvim
rd -r ~\AppData\Local\nvim-datarm -Force ~\AppData\Local\nvim
rm -Force ~\AppData\Local\nvim-data
```shellFkvim (c)opyrights reserved to Flashcodes