feat(docs): Add neovim module documentation

This commit is contained in:
Jalil David Salamé Messina 2024-02-16 20:36:20 +01:00
parent d47b04a887
commit db8bae6f31
Signed by: jalil
GPG key ID: F016B9E770737A0B
5 changed files with 132 additions and 121 deletions

View file

@ -1,22 +1,3 @@
{
# Appearance
number = true;
relativenumber = true;
colorcolumn = "+1";
cursorline = true;
wrap = false;
splitright = true;
# Tabs & indentation
smarttab = true;
autoindent = true;
smartindent = true;
# Search path
path = ".,/usr/include,**";
wildmenu = true;
hlsearch = true;
incsearch = true;
ignorecase = true; # Search ignores cases
smartcase = true; # Unless it has a capital letter
# Enable local configuration :h 'exrc'
exrc = true; # safe since nvim 0.9
{ lib, ... }: {
options.jhome.nvim.enable = lib.mkEnableOption "jalil's neovim configuration" // { default = true; example = false; };
}