Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boris/neovim
Vim files
https://github.com/boris/neovim
Last synced: 7 days ago
JSON representation
Vim files
- Host: GitHub
- URL: https://github.com/boris/neovim
- Owner: boris
- Created: 2020-06-03T13:26:24.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-18T14:37:15.000Z (4 months ago)
- Last Synced: 2024-10-10T04:22:25.649Z (28 days ago)
- Language: Vim Script
- Homepage:
- Size: 212 KB
- Stars: 0
- Watchers: 2
- 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)