File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed
Expand file tree Collapse file tree 3 files changed +39
-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+ 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+ }
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 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 \
You can’t perform that action at this time.
0 commit comments