nixvim: enable line numbers

This commit is contained in:
Khaïs COLIN 2024-07-27 15:14:21 +02:00
parent 3d7114a9e1
commit 9524270935
3 changed files with 8 additions and 2 deletions

2
flake.lock generated
View file

@ -315,7 +315,7 @@
},
"locked": {
"lastModified": 1,
"narHash": "sha256-tnu4072GD9lOp31Erg0Xi6RKCqYCl+uZSnWsmQEY0/U=",
"narHash": "sha256-uROMzaBc8FFwhXwpWT2+Zmci8gvRCGzQc0wVwOGLcEs=",
"path": "./nixvim",
"type": "path"
},

View file

@ -1,7 +1,8 @@
{
# Import all your configuration modules here
imports = [
./bufferline.nix
./options.nix
./clipboard.nix
./bufferline.nix
];
}

View file

@ -0,0 +1,5 @@
{
opts = {
number = true;
};
}