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

View file

@ -33,7 +33,7 @@ opt.sidescrolloff = 5
opt.cursorline = true
opt.shell = "/usr/bin/fish"
opt.shell = "/home/mo/.local/bin/xonsh"
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"
using Pkg: Pkg
Pkg.update()
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",))
println("Startup setup...")
@ -16,5 +16,5 @@ if !(project_dir in ("nvim-lspconfig",))
if isfile("Project.toml")
Pkg.activate(".")
end
end
end