Skip to content

Commit

Permalink
feat: fvim
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Mar 16, 2024
1 parent bfb87d5 commit b189522
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
...
}: {
apps = {
default.program = config.neovim.final;
push.program = pkgs.writeShellApplication {
name = "push.sh";
runtimeInputs = with pkgs; [cachix jq];
Expand Down Expand Up @@ -86,7 +85,15 @@
formatter = pkgs.alejandra;

packages = {
default = config.neovim.final;
default = pkgs.symlinkJoin {
name = "nvim-bin";
paths = [
config.neovim.final # `nvim`
(pkgs.writeShellScriptBin "fvim" ''
nvim +'Telescope smart_open'
'')
];
};
nvim-dbee = pkgs.callPackage ./pkgs/nvim-dbee.nix {};
nvim-treesitter = pkgs.callPackage ./pkgs/nvim-treesitter {};
};
Expand Down

0 comments on commit b189522

Please sign in to comment.