βοΈ Configuration
Once FtVim is installed, you can easily customize it to suit your preferences.
π File Structureβ
Your Neovim configuration files are organized in a structured way for easy access and modification. Hereβs an overview of the important directories and files:
~/.config/nvim
βββ lua
βΒ Β βββ config
βΒ Β βΒ Β βββ autocmds.lua # Custom auto-commands
βΒ Β βΒ Β βββ keymaps.lua # Key mappings
βΒ Β βΒ Β βββ options.lua # General options and settings
βΒ Β βββ plugins
βΒ Β βββ plug1.lua
βΒ Β βββ **
βΒ Β βββ plug2.lua
This structure keeps your configuration modular and clean, making it easy to find and edit specific settings.
π¨ Icons & Colorschemeβ
To customize the icons and colorscheme in FtVim, you can adjust the options for the FtVim plugin. For example, you can set the colorscheme in the lua/plugins/colorscheme.lua
file.
Here's how you can specify the Kanagawa colorscheme in your configuration:
return {
{
"FtVim/FtVim",
opts = {
colorscheme = "kanagawa", -- Set your preferred colorscheme here
}
}
}