Skip to content

Commit de1ac02

Browse files
authored
Merge pull request #35 from legendu-net/dev
Merge dev into main
2 parents 079eeb6 + a25411c commit de1ac02

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

.idx/dev.nix

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
PATH = [
13+
"$HOME/.local/bin"
14+
];
15+
};
16+
idx = {
17+
# check extensions on https://open-vsx.org/
18+
extensions = [
19+
"asvetliakov.vscode-neovim"
20+
];
21+
workspace = {
22+
onCreate = {
23+
};
24+
onStart = {
25+
icon = ''
26+
curl -sSL https://raw.githubusercontent.com/legendu-net/icon/main/install_icon.sh | bash -s -- \
27+
-d ~/.local/bin
28+
'';
29+
};
30+
};
31+
# Enable previews and customize configuration
32+
previews = {};
33+
};
34+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"IDX.aI.enableInlineCompletion": true,
3+
"IDX.aI.enableCodebaseIndexing": true
4+
}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update -y \
88
python3-all-dev python3-setuptools build-essential python3-wheel python3-apt \
99
#&& pip3 install -U --break-system-packages pip \
1010
&& pip3 install --break-system-packages \
11-
pytype pylint black[jupyter] isort pytest ipython \
11+
pytype ruff pytest ipython \
1212
wajig \
1313
&& ln -svf /usr/bin/python3 /usr/bin/python \
1414
&& ln -svf /usr/bin/pip3 /usr/bin/pip \

0 commit comments

Comments
 (0)