1
Fork 0
satellite/modules/applications/neovim.nix

77 lines
2.2 KiB
Nix
Raw Normal View History

{ pkgs, lib, paths, ... }:
2022-01-30 20:19:35 +01:00
let
paq = pkgs.fetchFromGitHub {
owner = "savq";
repo = "paq-nvim";
2022-08-24 13:13:35 +02:00
rev = "bc5950b990729464f2493b1eaab5a7721bd40bf5";
sha256 = "0rsv3j5rxfv7ys9zvq775f63vy6w880b0xhyr164y8fcadhpypb3";
2022-01-30 20:19:35 +01:00
};
2022-03-10 20:59:18 +01:00
theme = pkgs.myThemes.current;
2022-03-10 20:59:18 +01:00
extraPackages = with pkgs; [
# Language servers
nodePackages.typescript-language-server # typescript
easy-purescript-nix.purescript-language-server # purescript
sumneko-lua-language-server # lua
rnix-lsp # nix
haskell-language-server # haskell
tectonic # also latex something?
texlab # latex
2022-07-19 20:19:36 +02:00
# vscode-langservers-extracted # css and shit
2022-03-10 20:59:18 +01:00
# Formatters
luaformatter # lua
ormolu # haskell
2022-07-19 20:19:36 +02:00
easy-purescript-nix.purs-tidy
# prettierd # prettier but faster
2022-01-30 19:10:57 +01:00
# Others
2022-07-27 10:00:25 +02:00
nodePackages.typescript # typescript
wakatime # time tracking
fd # file finder
ripgrep # grep rewrite (I think?)
update-nix-fetchgit # useful for nix stuff
tree-sitter # syntax highlighting
2022-07-19 20:19:36 +02:00
libstdcxx5 # required by treesitter aparently
2022-12-14 03:20:59 +01:00
zathura # pdf reader
xdotool # for zathura reverse search or whatever it's called
2022-01-30 19:10:57 +01:00
texlive.combined.scheme-full # latex stuff
python38Packages.pygments # required for latex syntax highlighting
];
2022-01-31 21:54:22 +01:00
base = pkgs.neovim-nightly;
2022-06-22 22:09:55 +02:00
# base = pkgs.neovim;
2022-12-14 03:20:59 +01:00
neovim =
pkgs.symlinkJoin {
inherit (base) name meta;
paths = [ base ];
nativeBuildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/nvim \
--prefix PATH : ${lib.makeBinPath extraPackages}
'';
};
2022-12-14 03:20:59 +01:00
nixPlugins = ".local/share/nvim/site/pack/nix";
in
{
2022-12-14 03:20:59 +01:00
home-manager.users.adrielus = { config, ... }:
let simlink = config.lib.file.mkOutOfStoreSymlink; in
{
home.file.".local/share/nvim/site/pack/paqs/start/paq-nvim".source = paq;
2022-12-14 03:20:59 +01:00
home.file."${nixPlugins}/start/theming/lua/my/theme.lua".source = theme.neovim.theme;
home.file."${nixPlugins}/start/snippets".source = simlink "${paths.dotfiles}/vscode-snippets";
home.file.".config/nvim".source = simlink "${paths.dotfiles}/neovim";
2022-06-18 23:09:21 +02:00
2022-07-19 20:19:36 +02:00
programs.neovim.enable = false;
home.packages = [
neovim
];
};
2022-01-30 19:10:57 +01:00
}