forked from cksystemsteaching/selfie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.replit
34 lines (26 loc) · 786 Bytes
/
.replit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# The command that is executed when the run button is clicked.
run = "./selfie"
compile = "make"
# The default file opened in the editor.
entrypoint = "selfie.c"
# Setting environment variables
# [env]
# FOO="foo"
# Packager configuration for the Universal Package Manager
# See https://github.com/replit/upm for supported languages.
[packager]
language = "c"
[packager.features]
# Enables the package search sidebar
packageSearch = true
# Enabled package guessing
guessImports = false
# Per language configuration: language.<lang name>
[languages.c]
# The glob pattern to match files for this programming language
pattern = "**/*.{c,h}"
# LSP configuration for code intelligence
[languages.c.languageServer]
start = ["ccls"]
[nix]
channel = "stable-21_11"