An open API service indexing awesome lists of open source software.

https://github.com/micheam/vimrc

My personal Vim9 configuration
https://github.com/micheam/vimrc

vim vim9script vimrc

Last synced: 5 months ago
JSON representation

My personal Vim9 configuration

Awesome Lists containing this project

README

          

Personal Vim9 configuration repository.

> [!Note]
>
> This configuration is written in Vim9script and requires Vim 9.0 or later.
> It is not compatible with Neovim or older versions of Vim.

## Installation

```bash
git clone https://github.com/micheam/vimrc.git $XDG_CONFIG_HOME/vim
```

## Structure

```
.
├── vimrc # Main configuration entry point
├── _general.vim # General Vim settings
├── _plugins.vim # Plugin configurations
├── _keymaps.vim # Key mappings
├── _functions.vim # Custom Vim9 functions
├── _filetypes.vim # Filetype-specific settings
├── plugin/ # Custom plugins
├── ftplugin/ # Filetype plugins
├── autoload/ # Autoloaded functions
└── scripts/ # Utility scripts
```