# minimal_vim
**Repository Path**: odoochain/minimal_vim
## Basic Information
- **Project Name**: minimal_vim
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MulanPSL-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-12-08
- **Last Updated**: 2023-12-08
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Introduction
This is a minimal Vim/[Neovim](https://github.com/neovim/neovim) configuration
in just one file without external dependencies. The purpose is to provide a
light-weight and ready-to-use Vim config for quick editing.
The config is tested in Vim 9 and Nvim 0.8.0.
# Feature
It's just blazingly fast(80ms startup time) with all the sane starter configs.
- A Timelss Theme: Tokyo Night
- As builtin status line
- Some reasonable autocommands
- No extra dependencies
- Cross-platform compatible(vim/neovim, mac/linux/windows)
- (no autocomplete or autoformat or lsp, for obvious reasons)
# How to use
## 🐧 On Unix(mac or linux) systems
### For Neovim/Vim
```bash
mkdir -p ~/.config/nvim && cd ~/.config/nvim
git clone https://github.com/odoochain/minimal_vim.git .
cp .vimrc $home/.vimrc
```
### For Vim [see nvim-zh](https://github.com/nvim-zh/minimal_vim)
```bash
# to avoid default conf interfering with this conf
mv ~/.vimrc ~/.vimrc.bak
mkdir -p ~/.vim && cd ~/.vim
git clone https://github.com/odoochain/minimal_vim.git .
```
## ⏹ On Windows
### For Neovim/Vim
**One line Install**
``` powershell
Invoke-WebRequest https://raw.githubusercontent.com/odoochain/minimal_vim/master/utils/install.ps1 -UseBasicParsing | Invoke-Expression
```
for gitee.com
``` powershell
Invoke-WebRequest https://gitee.com/odoochain/minimal_vim/raw/main/utils/update.ps1 -UseBasicParsing | Invoke-Expression
```