about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-11 22:53:13 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-07-11 22:53:13 +0200
commit43626fbf39b10e5afc7aa50fbe780af6f452cf56 (patch)
treef59433304f4201821fb28bece29aec9c2631cd56
parentImplemented predictSkyObjects (diff)
downloadsky-info-43626fbf39b10e5afc7aa50fbe780af6f452cf56.tar.gz
sky-info-43626fbf39b10e5afc7aa50fbe780af6f452cf56.tar.bz2
sky-info-43626fbf39b10e5afc7aa50fbe780af6f452cf56.zip
Enable direnv and install hls
-rw-r--r--.envrc1
-rw-r--r--.gitignore4
-rw-r--r--shell.nix4
3 files changed, 7 insertions, 2 deletions
diff --git a/.envrc b/.envrc
new file mode 100644
index 0000000..3550a30
--- /dev/null
+++ b/.envrc
@@ -0,0 +1 @@
+use flake
diff --git a/.gitignore b/.gitignore
index c368d45..2e84880 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
 .stack-work/
-*~
\ No newline at end of file
+*~
+
+.direnv/
diff --git a/shell.nix b/shell.nix
index e29bb6d..72fce48 100644
--- a/shell.nix
+++ b/shell.nix
@@ -4,5 +4,7 @@ pkgs.mkShell {
     ghc
     cabal-install
     stack
+  
+    haskell-language-server
   ];
-}
\ No newline at end of file
+}