🐛 fix(system): use relative instead of absolute paths
This commit is contained in:
parent
270633cec2
commit
c0d97999fd
5 changed files with 11 additions and 10 deletions
|
@ -151,7 +151,7 @@
|
||||||
"vscode-neovim.neovimExecutablePaths.linux": "/home/matt/.local/share/bob/nvim-bin/nvim",
|
"vscode-neovim.neovimExecutablePaths.linux": "/home/matt/.local/share/bob/nvim-bin/nvim",
|
||||||
|
|
||||||
// Project Manager
|
// Project Manager
|
||||||
"projectManager.git.baseFolders": ["/home/matt/Repos/"],
|
"projectManager.git.baseFolders": ["~/Repos/"],
|
||||||
"projectManager.sortList": "Recent",
|
"projectManager.sortList": "Recent",
|
||||||
// Smooth movement
|
// Smooth movement
|
||||||
"workbench.list.smoothScrolling": true,
|
"workbench.list.smoothScrolling": true,
|
||||||
|
@ -1118,5 +1118,6 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"editor.matchBrackets": "never",
|
"editor.matchBrackets": "never",
|
||||||
"workbench.statusBar.visible": false
|
"workbench.statusBar.visible": false,
|
||||||
|
"workbench.activityBar.location": "hidden"
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,11 +7,11 @@ language: en-US
|
||||||
theme: dark
|
theme: dark
|
||||||
roots:
|
roots:
|
||||||
- store: steam
|
- store: steam
|
||||||
path: /home/matt/.local/share/Steam
|
path: ~/.local/share/Steam
|
||||||
- store: heroic
|
- store: heroic
|
||||||
path: /home/matt/.config/heroic
|
path: ~/.config/heroic
|
||||||
- store: steam
|
- store: steam
|
||||||
path: /home/matt/Games/SteamLibrary
|
path: ~/Games/SteamLibrary
|
||||||
redirects: []
|
redirects: []
|
||||||
backup:
|
backup:
|
||||||
path: /backups/gamesaves
|
path: /backups/gamesaves
|
||||||
|
|
|
@ -95,15 +95,15 @@ cscale-antiring=0.7 # chroma upscale deringing
|
||||||
glsl-shaders-clr
|
glsl-shaders-clr
|
||||||
# luma upscaling
|
# luma upscaling
|
||||||
# note: any FSRCNNX above FSRCNNX_x2_8-0-4-1 is not worth the additional computional overhead
|
# note: any FSRCNNX above FSRCNNX_x2_8-0-4-1 is not worth the additional computional overhead
|
||||||
glsl-shaders="/home/matt/.config/mpv/shaders/FSRCNNX_x2_8-0-4-1.glsl"
|
glsl-shaders="~/.config/mpv/shaders/FSRCNNX_x2_8-0-4-1.glsl"
|
||||||
scale=ewa_lanczos
|
scale=ewa_lanczos
|
||||||
# luma downscaling
|
# luma downscaling
|
||||||
# note: ssimdownscaler is tuned for mitchell and downscaling=no
|
# note: ssimdownscaler is tuned for mitchell and downscaling=no
|
||||||
glsl-shaders-append="/home/matt/.config/mpv/shaders/SSimDownscaler.glsl"
|
glsl-shaders-append="~/.config/mpv/shaders/SSimDownscaler.glsl"
|
||||||
dscale=mitchell
|
dscale=mitchell
|
||||||
linear-downscaling=no
|
linear-downscaling=no
|
||||||
# chroma upscaling and downscaling
|
# chroma upscaling and downscaling
|
||||||
glsl-shaders-append="/home/matt/.config/mpv/shaders/KrigBilateral.glsl"
|
glsl-shaders-append="~/.config/mpv/shaders/KrigBilateral.glsl"
|
||||||
cscale=mitchell
|
cscale=mitchell
|
||||||
sigmoid-upscaling=yes
|
sigmoid-upscaling=yes
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ return {
|
||||||
},
|
},
|
||||||
cond = vim.env.KITTY_SCROLLBACK_NVIM == nil,
|
cond = vim.env.KITTY_SCROLLBACK_NVIM == nil,
|
||||||
opts = {
|
opts = {
|
||||||
save_path = "/home/matt/Pictures/Screenshots/Code", -- FIX: Need to find a way for this to work inside vscode and kitty
|
save_path = "~/Pictures/Screenshots/Code", -- FIX: Need to find a way for this to work inside vscode and kitty
|
||||||
title = "CodeSnap.nvim",
|
title = "CodeSnap.nvim",
|
||||||
code_font_family = "JetBrainsMono Nerd Font",
|
code_font_family = "JetBrainsMono Nerd Font",
|
||||||
watermark_font_family = "JetBrainsMono Nerd Font",
|
watermark_font_family = "JetBrainsMono Nerd Font",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[Appearance]
|
[Appearance]
|
||||||
color_scheme_path=/home/matt/.config/qt5ct/colors/Catppuccin-Macchiato.conf
|
color_scheme_path=~/.config/qt5ct/colors/Catppuccin-Macchiato.conf
|
||||||
custom_palette=true
|
custom_palette=true
|
||||||
icon_theme=Catppuccin-SE
|
icon_theme=Catppuccin-SE
|
||||||
standard_dialogs=default
|
standard_dialogs=default
|
||||||
|
|
Loading…
Add table
Reference in a new issue