feat: Project init
This commit is contained in:
parent
5a30e53752
commit
ea62c3cd8f
6 changed files with 25 additions and 0 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use nix
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,6 @@
|
|||
# Nix
|
||||
.direnv
|
||||
|
||||
# ---> Lua
|
||||
# Compiled Lua sources
|
||||
luac.out
|
||||
|
|
3
.gitmodules
vendored
Normal file
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
6
.luarc.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"workspace.library": [
|
||||
"./lib/cc-tweaked/",
|
||||
"./lib/basalt/Basalt"
|
||||
]
|
||||
}
|
11
default.nix
Normal file
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
1
lib/cc-tweaked
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 3476321e41f836626a741477fb03e68f7565982e
|
Loading…
Reference in a new issue