File tree 3 files changed +35
-1
lines changed
3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ { pkgs , ...} : {
2
+ channel = "stable-24.11" ;
3
+ packages = with pkgs ; [
4
+ bash-completion
5
+ gitui
6
+ neovim
7
+ ripgrep
8
+ rm-improved
9
+ bat
10
+ ] ;
11
+ env = { } ;
12
+ idx = {
13
+ # check extensions on https://open-vsx.org/
14
+ extensions = [
15
+ "asvetliakov.vscode-neovim"
16
+ ] ;
17
+ workspace = {
18
+ #onCreate = {
19
+ #}
20
+ onStart = {
21
+ icon = ''
22
+ curl -sSL https://raw.githubusercontent.com/legendu-net/icon/main/install_icon.sh | bash -s -- \
23
+ -d ~/.local/bin
24
+ '' ;
25
+ } ;
26
+ } ;
27
+ # Enable previews and customize configuration
28
+ previews = { } ;
29
+ } ;
30
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "IDX.aI.enableInlineCompletion" : true ,
3
+ "IDX.aI.enableCodebaseIndexing" : true
4
+ }
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ RUN pip3 install -U --break-system-packages \
8
8
&& /scripts/sys/purge_cache.sh
9
9
# && code-server --install-extension vscjava.vscode-java-pack \
10
10
RUN apt-get update && apt-get install -y valgrind \
11
- && icon from_github -r cdr/code-server -v ">=3.8.0,<4.92 .0" -k amd64.deb -o /tmp/code.deb \
11
+ && icon from_github -r cdr/code-server -v ">=3.8.0,<4.99 .0" -k amd64.deb -o /tmp/code.deb \
12
12
&& dpkg -i /tmp/code.deb \
13
13
# && code-server --install-extension [email protected] \
14
14
&& code-server --install-extension
[email protected] \
You can’t perform that action at this time.
0 commit comments