File Structure

This commit is contained in:
Ben Clayton 2024-12-13 19:01:54 -07:00
parent 41a1516e7b
commit c4b29f8263
5 changed files with 20 additions and 7 deletions

View File

@ -1,6 +0,0 @@
{
plugins = {
bufferline.enable = true;
web-devicons.enable = true;
};
}

View File

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

4
config/keymappings.nix Normal file
View File

@ -0,0 +1,4 @@
{self, ...}: {
keymaps = [
];
}

7
config/options.nix Normal file
View File

@ -0,0 +1,7 @@
{self, ...}: {
globalOpts = {
# Line numbers
number = true;
relativenumber = true;
};
}

4
config/plugins.nix Normal file
View File

@ -0,0 +1,4 @@
{pkgs, ...}: {
plugins = {
};
}