summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-05-20 00:20:28 +0000
committerGitHub <noreply@github.com>2024-05-20 00:20:28 +0000
commit7ee99015f7fb4b5c259989a732a68035701f5176 (patch)
tree2452ff26c450fbba01074a406c544a5e7c0ae996
parentba6a1252f43fdc701def1c65adfc11a817310564 (diff)
delete nixvim stuff
-rw-r--r--nvim/config/config.nix18
-rw-r--r--nvim/config/default.nix6
2 files changed, 0 insertions, 24 deletions
diff --git a/nvim/config/config.nix b/nvim/config/config.nix
deleted file mode 100644
index d7d0f5b..0000000
--- a/nvim/config/config.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- colorschemes.gruvbox.enable = true;
-
- plugins = {
- lsp = {
- enable = true;
- servers = {
- tsserver.enable = true;
- lua-ls.enable = true;
- rust-analyzer.enable = true;
- };
- };
- lualine.enable = true;
- treesitter.enable = true;
- telescope.enable = true;
- rust-tools.enable = true;
- };
-}
diff --git a/nvim/config/default.nix b/nvim/config/default.nix
deleted file mode 100644
index 98f387f..0000000
--- a/nvim/config/default.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- # Import all your configuration modules here
- imports = [
- ./config.nix
- ];
-}