Move to nix-darwin
My personal Neovim configuration files on macOS (apple silicon).
This setup is mainly used for taking notes and writing documents in LaTeX. For the useful snippets (for mathematics, especially algebraic geometry) see mysnippets
├── LICENSE
├── README.md
├── ginit.vim
├── init.lua
├── lazy-lock.json
├── lua
│ └── plugins
│ ├── coding.lua
│ ├── dap.lua
│ ├── editor.lua
│ ├── lang.lua
│ ├── lsp.lua
│ ├── treesitter.lua
│ ├── ui.lua
│ └── util.lua
├── neovim.cat
├── plugin
│ ├── autocmds.lua
│ ├── keymaps.lua
│ └── options.lua
└── spell
├── en.utf-8.add
└── en.utf-8.add.spl
init.lua
-- entrance of the configurationlua/plugins
-- submodules for different pluginsplugin
-- autocmds, keymaps, options
Thanks to folke and his LazyVim project where I copied a lot of code.