Skip to main content

βš™οΈ 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
}
}
}