feat: Project init

This commit is contained in:
Jiří Štefka 2024-10-16 14:19:09 +02:00
parent 5a30e53752
commit ea62c3cd8f
6 changed files with 25 additions and 0 deletions

1
.envrc Normal file

@ -0,0 +1 @@
use nix

3
.gitignore vendored

@ -1,3 +1,6 @@
# Nix
.direnv
# ---> Lua # ---> Lua
# Compiled Lua sources # Compiled Lua sources
luac.out luac.out

3
.gitmodules vendored Normal file

@ -0,0 +1,3 @@
[submodule "lib/cc-tweaked"]
path = lib/cc-tweaked
url = git@github.com:jiriks74/CCTweaked-LSP.git

6
.luarc.json Normal file

@ -0,0 +1,6 @@
{
"workspace.library": [
"./lib/cc-tweaked/",
"./lib/basalt/Basalt"
]
}

11
default.nix Normal file

@ -0,0 +1,11 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = with pkgs; [
# Choose the build tools that you need
ccemux
lua
];
}

1
lib/cc-tweaked Submodule

@ -0,0 +1 @@
Subproject commit 3476321e41f836626a741477fb03e68f7565982e