flake.nix 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. description = "Neovim configuration";
  3. inputs = {
  4. neovim-flake.url = "github:neovim/neovim?dir=contrib";
  5. neovim-flake.inputs.nixpkgs.follows = "nixpkgs";
  6. };
  7. outputs = { self, nixpkgs, neovim-flake }: {
  8. overlay = final: prev: {
  9. neovim-unwrapped = neovim-flake.packages.${prev.system}.neovim;
  10. };
  11. packages.x86_64-linux.default =
  12. with import nixpkgs {
  13. system = "x86_64-linux";
  14. overlays = [ self.overlay ];
  15. };
  16. let
  17. extraPath = [
  18. fd
  19. ripgrep
  20. nodePackages.typescript-language-server
  21. nodePackages.eslint_d
  22. ];
  23. in
  24. neovim.override {
  25. extraMakeWrapperArgs = "--prefix PATH : ${lib.makeBinPath extraPath}";
  26. configure = {
  27. customRC = ''
  28. source ${./settings.lua}
  29. source ${./plugins.lua}
  30. source ${./mappings.lua}
  31. source ${./autocmd.lua}
  32. source ${./lsp.lua}
  33. source ${./theme.lua}
  34. '';
  35. packages.myVimPackage = with vimPlugins; {
  36. start = [
  37. vim-sensible
  38. vim-sleuth
  39. vim-fugitive
  40. vim-surround
  41. vim-abolish
  42. undotree
  43. vim-merginal
  44. telescope-nvim
  45. telescope-fzf-native-nvim
  46. mini-nvim
  47. gitsigns-nvim
  48. sonokai
  49. (nvim-treesitter.withPlugins (p: with p; [
  50. tree-sitter-css
  51. tree-sitter-go
  52. tree-sitter-javascript
  53. tree-sitter-json
  54. tree-sitter-lua
  55. tree-sitter-nix
  56. tree-sitter-ruby
  57. tree-sitter-tsx
  58. tree-sitter-typescript
  59. ]))
  60. nvim-lspconfig
  61. nvim-lsp-ts-utils
  62. null-ls-nvim
  63. fidget-nvim
  64. ];
  65. };
  66. };
  67. };
  68. };
  69. }