1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00

Change shell

This commit is contained in:
Mo8it 2022-04-23 23:08:24 +02:00
parent ea0aa8ab18
commit e47f219ca6
4 changed files with 47 additions and 50 deletions

View file

@ -1,47 +1,44 @@
{ {
"asciidoc.preview.scrollEditorWithPreview": false, "asciidoc.preview.scrollEditorWithPreview": false,
"cSpell.allowCompoundWords": true, "cSpell.allowCompoundWords": true,
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.minimap.enabled": false, "editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false, "editor.minimap.renderCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false, "editor.unicodeHighlight.ambiguousCharacters": false,
"git.autofetch": true, "git.autofetch": true,
"git.confirmSync": false, "git.confirmSync": false,
"julia.NumThreads": 16, "julia.NumThreads": 16,
"julia.enableCrashReporter": true, "julia.enableCrashReporter": true,
"julia.enableTelemetry": true, "julia.enableTelemetry": true,
"julia.symbolCacheDownload": true, "julia.symbolCacheDownload": true,
"julia.usePlotPane": false, "julia.usePlotPane": false,
"markdown.preview.scrollEditorWithPreview": false, "markdown.preview.scrollEditorWithPreview": false,
"outline.showArrays": false, "outline.showArrays": false,
"outline.showBooleans": false, "outline.showBooleans": false,
"outline.showConstants": false, "outline.showConstants": false,
"outline.showEnumMembers": false, "outline.showEnumMembers": false,
"outline.showEnums": false, "outline.showEnums": false,
"outline.showFields": false, "outline.showFields": false,
"outline.showKeys": false, "outline.showKeys": false,
"outline.showNull": false, "outline.showNull": false,
"outline.showNumbers": false, "outline.showNumbers": false,
"outline.showObjects": false, "outline.showObjects": false,
"outline.showOperators": false, "outline.showOperators": false,
"outline.showPackages": false, "outline.showPackages": false,
"outline.showProperties": false, "outline.showProperties": false,
"outline.showStrings": false, "outline.showStrings": false,
"outline.showStructs": false, "outline.showStructs": false,
"outline.showTypeParameters": false, "outline.showTypeParameters": false,
"outline.showVariables": false, "outline.showVariables": false,
"python.formatting.provider": "black", "python.formatting.provider": "black",
"terminal.integrated.commandsToSkipShell": [ "terminal.integrated.commandsToSkipShell": ["language-julia.interrupt"],
"language-julia.interrupt" "todo-tree.ripgrep.ripgrep": "/usr/bin/rg",
], "update.mode": "none",
"terminal.integrated.defaultProfile.linux": "fish", "window.menuBarVisibility": "toggle",
"todo-tree.ripgrep.ripgrep": "/usr/bin/rg", "workbench.enableExperiments": false,
"update.mode": "none", "workbench.startupEditor": "none",
"window.menuBarVisibility": "toggle", "workbench.iconTheme": "vscode-icons",
"workbench.enableExperiments": false, "vsicons.dontShowNewVersionMessage": true,
"workbench.startupEditor": "none", "files.trimTrailingWhitespace": true,
"workbench.iconTheme": "vscode-icons", "window.zoomLevel": -1
"vsicons.dontShowNewVersionMessage": true,
"files.trimTrailingWhitespace": true,
"window.zoomLevel": -1
} }

View file

@ -1,4 +1,4 @@
shell /usr/bin/fish shell /home/mo/.local/bin/xonsh
scrollback_lines 10000 scrollback_lines 10000

View file

@ -33,7 +33,7 @@ opt.sidescrolloff = 5
opt.cursorline = true opt.cursorline = true
opt.shell = "/usr/bin/fish" opt.shell = "/home/mo/.local/bin/xonsh"
opt.confirm = true opt.confirm = true

View file

@ -1,11 +1,11 @@
ENV["JULIA_SHELL"] = "/usr/bin/fish" ENV["JULIA_SHELL"] = "/home/mo/.local/bin/xonsh"
ENV["JULIA_EDITOR"] = "nvim" ENV["JULIA_EDITOR"] = "nvim"
using Pkg: Pkg using Pkg: Pkg
Pkg.update() Pkg.update()
project_path = Pkg.project().path project_path = Pkg.project().path
project_dir = split(project_path, "/")[end - 1] project_dir = split(project_path, "/")[end-1]
if !(project_dir in ("nvim-lspconfig",)) if !(project_dir in ("nvim-lspconfig",))
println("Startup setup...") println("Startup setup...")