feat: Init nvim from jalil-salame/nvim-config

Step one of Issue #15
This commit is contained in:
Jalil David Salamé Messina 2024-02-16 20:10:20 +01:00
parent a4dbd22402
commit d47b04a887
Signed by: jalil
GPG key ID: F016B9E770737A0B
11 changed files with 538 additions and 97 deletions

22
nvim/options.nix Normal file
View file

@ -0,0 +1,22 @@
{
# 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
}