diff --git a/config/bufferline.nix b/config/bufferline.nix deleted file mode 100644 index 2dfee9e..0000000 --- a/config/bufferline.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - plugins = { - bufferline.enable = true; - web-devicons.enable = true; - }; -} diff --git a/config/default.nix b/config/default.nix index fb318ab..84e4750 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,4 +1,8 @@ { # Import all your configuration modules here - imports = [ ./bufferline.nix ]; + imports = [ + ./plugins.nix + ./options.nix + ./keymappings.nix + ]; } diff --git a/config/keymappings.nix b/config/keymappings.nix new file mode 100644 index 0000000..e8291be --- /dev/null +++ b/config/keymappings.nix @@ -0,0 +1,4 @@ +{self, ...}: { + keymaps = [ + ]; +} diff --git a/config/options.nix b/config/options.nix new file mode 100644 index 0000000..4339f31 --- /dev/null +++ b/config/options.nix @@ -0,0 +1,7 @@ +{self, ...}: { + globalOpts = { + # Line numbers + number = true; + relativenumber = true; + }; +} diff --git a/config/plugins.nix b/config/plugins.nix new file mode 100644 index 0000000..2fd9780 --- /dev/null +++ b/config/plugins.nix @@ -0,0 +1,4 @@ +{pkgs, ...}: { + plugins = { + }; +}