Fix post-install script
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
d57b0150cf
commit
6cb1fb7ccd
2 changed files with 5 additions and 5 deletions
|
@ -28,8 +28,8 @@ NPM_PACKAGES=(
|
||||||
|
|
||||||
# Rust components which should be installed
|
# Rust components which should be installed
|
||||||
RUST_COMPONENTS=(
|
RUST_COMPONENTS=(
|
||||||
"rls-preview"
|
"rls"
|
||||||
"rustfmt-preview"
|
"rustfmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
|
@ -45,6 +45,6 @@ print_section "Installing global npm packages"
|
||||||
npm i -g "${NPM_PACKAGES[@]}"
|
npm i -g "${NPM_PACKAGES[@]}"
|
||||||
|
|
||||||
print_section "Install Rust toolchain and components"
|
print_section "Install Rust toolchain and components"
|
||||||
rustup toolchain install nightly
|
rustup toolchain install beta
|
||||||
rustup default nightly
|
rustup default beta
|
||||||
rustup component add "${RUST_COMPONENTS[@]}"
|
rustup component add "${RUST_COMPONENTS[@]}"
|
|
@ -1,6 +1,6 @@
|
||||||
[Filechooser Settings]
|
[Filechooser Settings]
|
||||||
LocationMode=path-bar
|
LocationMode=path-bar
|
||||||
ShowHidden=false
|
ShowHidden=true
|
||||||
ShowSizeColumn=true
|
ShowSizeColumn=true
|
||||||
GeometryX=0
|
GeometryX=0
|
||||||
GeometryY=0
|
GeometryY=0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue