From c4b29f82637e7a1d88db14491ffcebf8e811ca30 Mon Sep 17 00:00:00 2001 From: d2b906 Date: Fri, 13 Dec 2024 19:01:54 -0700 Subject: [PATCH] File Structure --- config/bufferline.nix | 6 ------ config/default.nix | 6 +++++- config/keymappings.nix | 4 ++++ config/options.nix | 7 +++++++ config/plugins.nix | 4 ++++ 5 files changed, 20 insertions(+), 7 deletions(-) delete mode 100644 config/bufferline.nix create mode 100644 config/keymappings.nix create mode 100644 config/options.nix create mode 100644 config/plugins.nix 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 = { + }; +}