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
- Host: GitHub
- URL: https://github.com/micheam/vimrc
- Owner: micheam
- Created: 2024-12-25T02:53:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-15T09:55:36.000Z (5 months ago)
- Last Synced: 2025-07-15T21:57:23.898Z (5 months ago)
- Topics: vim, vim9script, vimrc
- Language: Vim Script
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```