https://github.com/boris/neovim
Vim files
https://github.com/boris/neovim
Last synced: 3 months ago
JSON representation
Vim files
- Host: GitHub
- URL: https://github.com/boris/neovim
- Owner: boris
- Created: 2020-06-03T13:26:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-20T09:57:31.000Z (3 months ago)
- Last Synced: 2025-03-20T10:37:58.331Z (3 months ago)
- Language: Vim Script
- Homepage:
- Size: 217 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Migration to NeoVim - Why?
Because I think it was time to start optimizing the way I configure my
day-to-day editor/IDE, and I decided to go to Lua.Also, I wanted to reduce the size of my config files from:
```
du -sh legacy
724K legacy
```To:
```
~/.config/nvim
du -sh .
16K .
```For this setup I'm using [lazy.nvim](https://github.com/folke/lazy.nvim) and
a bunch of custom configs.# Old code:
It's under the `legacy` directory, so the instructions are a bit different:```
git clone [email protected]:boris/vim.git
ln -s ~//legacy/vimrc ~/.vimrc
```After that, open vim and run `PlugInstall` (vim, :PlugInstall)