feat: make config portable
This commit is contained in:
parent
36051f36ca
commit
fd14b228bc
5 changed files with 26 additions and 5 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use flake;
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.direnv
|
13
flake.nix
13
flake.nix
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
description = "A very basic flake";
|
description = "A portable Neovim flake";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||||
|
@ -12,6 +12,15 @@
|
||||||
pkgs = import nixpkgs { inherit system; };
|
pkgs = import nixpkgs { inherit system; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
packages.x86_64-linux.default = pkgs.callPackage ./nix/package.nix { };
|
packages.${system}.default = pkgs.callPackage ./nix/package.nix { };
|
||||||
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
|
packages = [ self.packages.${system}.default ];
|
||||||
|
|
||||||
|
EDITOR = "${self.packages.${system}.default}/bin/nvim";
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
export TMP_PROJECT_ROOT="$PWD"
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
2
init.lua
2
init.lua
|
@ -58,6 +58,8 @@ vim.filetype.add({
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
vim.o.undofile = true
|
||||||
|
|
||||||
require("plugins")
|
require("plugins")
|
||||||
|
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib ... }:
|
{ pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
deps = with pkgs; [
|
deps = with pkgs; [
|
||||||
lua
|
lua
|
||||||
|
@ -45,8 +45,16 @@ pkgs.writeTextFile {
|
||||||
text = ''
|
text = ''
|
||||||
#!${pkgs.bash}/bin/bash
|
#!${pkgs.bash}/bin/bash
|
||||||
export PATH=${lib.makeBinPath deps}:$PATH
|
export PATH=${lib.makeBinPath deps}:$PATH
|
||||||
export LUA_PATH=${../.}/lua/?.lua
|
|
||||||
${pkgs.neovim-unwrapped}/bin/nvim -u ${../.}/init.lua $@
|
if [ -z $${TMP_PROJECT_ROOT+x} ]; then
|
||||||
|
export LUA_PATH=${../.}/lua/?.lua;
|
||||||
|
export CONFIG_LOC=${../init.lua}
|
||||||
|
else
|
||||||
|
export LUA_PATH="$TMP_PROJECT_ROOT/lua/?.lua";
|
||||||
|
export CONFIG_LOC="$TMP_PROJECT_ROOT/init.lua"
|
||||||
|
fi
|
||||||
|
|
||||||
|
${pkgs.neovim-unwrapped}/bin/nvim -u $CONFIG_LOC $@
|
||||||
'';
|
'';
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
${pkgs.stdenv.shellDryRun} "$target"
|
${pkgs.stdenv.shellDryRun} "$target"
|
||||||
|
|
Loading…
Add table
Reference in a new issue