Add LSP support
This commit is contained in:
parent
2cf1863ef3
commit
9fd4e4c1a5
3 changed files with 17 additions and 0 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
eval "$(lorri direnv)"
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,3 +6,4 @@ prompt-history
|
||||||
xmonad-x86_64-linux
|
xmonad-x86_64-linux
|
||||||
xmonad.errors
|
xmonad.errors
|
||||||
xmonad.state
|
xmonad.state
|
||||||
|
dist-newstyle
|
||||||
|
|
15
shell.nix
Normal file
15
shell.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ pkgs ? import <nixpkgs> { } }:
|
||||||
|
let
|
||||||
|
inherit (pkgs) callPackage fetchFromGitHub mkShell;
|
||||||
|
easy-hls-src = fetchFromGitHub {
|
||||||
|
owner = "jkachmar";
|
||||||
|
repo = "easy-hls-nix";
|
||||||
|
rev = "291cf77f512a7121bb6801cde35ee1e8b7287f91";
|
||||||
|
sha256 = "1bvbcp9zwmh53sm16ycp8phhc6vzc72a71sf0bvyjgfbn6zp68bc";
|
||||||
|
};
|
||||||
|
easy-hls = callPackage easy-hls-src {};
|
||||||
|
in
|
||||||
|
|
||||||
|
mkShell {
|
||||||
|
buildInputs = [ easy-hls ];
|
||||||
|
}
|
Loading…
Reference in a new issue