File Structure
This commit is contained in:
parent
41a1516e7b
commit
c4b29f8263
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
plugins = {
|
||||
bufferline.enable = true;
|
||||
web-devicons.enable = true;
|
||||
};
|
||||
}
|
|
@ -1,4 +1,8 @@
|
|||
{
|
||||
# Import all your configuration modules here
|
||||
imports = [ ./bufferline.nix ];
|
||||
imports = [
|
||||
./plugins.nix
|
||||
./options.nix
|
||||
./keymappings.nix
|
||||
];
|
||||
}
|
||||
|
|
4
config/keymappings.nix
Normal file
4
config/keymappings.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{self, ...}: {
|
||||
keymaps = [
|
||||
];
|
||||
}
|
7
config/options.nix
Normal file
7
config/options.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{self, ...}: {
|
||||
globalOpts = {
|
||||
# Line numbers
|
||||
number = true;
|
||||
relativenumber = true;
|
||||
};
|
||||
}
|
4
config/plugins.nix
Normal file
4
config/plugins.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
plugins = {
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user