summary refs log tree commit diff
path: root/nixos/modules/programs/neovim.nix
Commit message (Collapse)AuthorAge
* nixos/neovim: fix withRuby, add with{Python3,NodeJs}Thiago Kenji Okada2021-11-07
| | | | | | | `withRuby` was declared but not referenced before, this commit fixes this issue. It also adds support for `withPython3` and `withNodeJs`.
* nixos/neovim: Respect option defaultEditorChristian Kögler2021-10-28
|
* nixos/doc: clean up defaults and examplesNaïm Favier2021-10-04
|
* nixos/neovim: Fix neovim runtime path generationJanne Heß2021-08-04
|
* programs.neovim: fix documentation (#99023)Matthieu Coudron2020-09-28
| | | brackets broke doc generation on master
* programs.neovim: init (#98506)Matthieu Coudron2020-09-28
* programs.neovim: init Allows to build a proper runtime folder with after/ ftplugin/ parser/ subfolders etc. (neo)vim expects a few different folders, for instance to load treesitter parsers. This PR reuses the builder from the etc module, notwithstanding the different modes/uid/gid. This allows to get rid of some autocmd in customRC (via proper use of the folder hierarchy) which is a win in my opinion.