summaryrefslogtreecommitdiff
path: root/pkgs/old-neovim/default.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-07-13 14:55:40 -0400
committertriethyl <triethylammonium@pm.me>2025-07-13 14:55:40 -0400
commit121a0fc03742e878410d6c3b2548869c584dc232 (patch)
tree3d6206a61e356749f96eac97db122f4b9b8d0b4f /pkgs/old-neovim/default.nix
parent501d6994ac36a5824abf4f17f8dd95be034e3df9 (diff)
removed old-neovim
Diffstat (limited to 'pkgs/old-neovim/default.nix')
-rw-r--r--pkgs/old-neovim/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/old-neovim/default.nix b/pkgs/old-neovim/default.nix
deleted file mode 100644
index 97a23df..0000000
--- a/pkgs/old-neovim/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- pkgs,
- inputs,
-}:
-inputs.mnw.lib.wrap pkgs {
- neovim = pkgs.neovim-unwrapped;
-
- plugins = with pkgs.vimPlugins; {
- dev.config.pure = ./config;
- start = [
- # Core Plugins
- mini-nvim # Ton of small modules.
- nvim-lspconfig # Adds lsp presets.
- actions-preview-nvim # Adds a selector for LSP actions.
- nvim-treesitter.withAllGrammars # All treesitter grammars.
- tabby-nvim # Tab bar.
- friendly-snippets # Extra snippets.
- lazydev-nvim # Enhances the nvim config editing experience.
-
- # Colorschemes
- oxocarbon-nvim # IBM Carbon themes.
- rose-pine # Rose Pine themes.
- kanagawa-nvim # Kanagawa themes.
- everforest # Green themes.
- nordic-nvim # Warm dark nordic theme.
-
- # Miscellaneous Plugins
- presence-nvim # Discord RPC for nvim.
- cellular-automaton-nvim # Fun useless plugin.
- ];
- opt = [];
- };
-
- luaFiles = [./config/init.lua];
-
- extraBinPath = with pkgs; [
- # LSP Servers
- lua-language-server # Lua LS
- nil # Nix LS
- marksman # Markdown LS
-
- # Formatters
- alejandra # Nix Formatter
-
- # Extra Tools
- ripgrep
- ];
-}