From 01006780327c08fd55b29c42e5cd0bd853c5299b Mon Sep 17 00:00:00 2001 From: voidarc Date: Thu, 26 Feb 2026 22:19:21 +0000 Subject: [PATCH] moved nvim-flake.nix to nvim repo --- nvim-flake.nix | 72 -------------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 nvim-flake.nix diff --git a/nvim-flake.nix b/nvim-flake.nix deleted file mode 100644 index e50cf07..0000000 --- a/nvim-flake.nix +++ /dev/null @@ -1,72 +0,0 @@ -{ - description = "Neovim with LSP dev shell"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - }; - - outputs = { self, nixpkgs }: - let - system = "x86_64-linux"; # change if needed - pkgs = import nixpkgs { inherit system; }; - in - { - devShells.${system}.default = pkgs.mkShell { - - packages = with pkgs; [ - # neovim - neovim - - # LSPs - lua-language-server - vscode-langservers-extracted - emmet-ls - prettier - black - nixfmt - nil - python313Packages.python-lsp-server - typescript-language-server - tailwindcss-language-server - stylua - nixd - - # other tools - lua5_1 - tree-sitter - ripgrep - gcc - gnumake - imagemagick - luajitPackages.magick - ghostscript - luarocks - - (texlive.combine { - inherit (texlive) - scheme-basic - varwidth - preview - mathtools - amsfonts - amscdx - xcolor - dvisvgm - dvipng - wrapfig - standalone - graphicxbox - amsmath - ulem - hyperref - capt-of; - }) - ]; - - shellHook = '' - export TREE_SITTER_LIB_PATH="${pkgs.tree-sitter}/lib" - echo "Neovim LSP environment loaded" - ''; - }; - }; -} \ No newline at end of file