This commit is contained in:
js0ny 2025-02-02 07:08:17 +00:00
commit 5533374bc3
6 changed files with 39 additions and 8 deletions

View file

@ -5,9 +5,13 @@
# This solves the issue of chromium apps not being able to access passwords in non-plasma environments # This solves the issue of chromium apps not being able to access passwords in non-plasma environments
# Location: # Location:
# ~/.config/chromium-flags.conf # ~/.config/chromium-flags.conf (for chromium)
# ~/.config/chrome-flags.conf
# ~/.var/app/com.vivaldi.Vivaldi/config/vivaldi-flags.conf (For flatpak) # ~/.var/app/com.vivaldi.Vivaldi/config/vivaldi-flags.conf (For flatpak)
# ~/.config/vivaldi-stable.conf (For ArchLinux vivaldi)
# Linking: # Linking:
# ln -sf $DOTFILES/platforms/linux/chromium-flags.conf ~/.var/app/com.vivaldi.Vivaldi/config/vivaldi-flags.conf # ln -sf $DOTFILES/platforms/linux/chromium-flags.conf ~/.var/app/com.vivaldi.Vivaldi/config/vivaldi-flags.conf
--UseOzonePlatform=wayland
--ozone-platform=wayland
--password-store=kwallet6 --password-store=kwallet6
--enable-wayland-ime --enable-wayland-ime

View file

@ -23,8 +23,8 @@ QT_IM_MODULE=fcitx
SDL_IM_MODULE=fcitx SDL_IM_MODULE=fcitx
XMODIFIFERS="@im=fcitx" XMODIFIFERS="@im=fcitx"
GLFW_IM_MODULE=fcitx GLFW_IM_MODULE=fcitx
# Scaling # Scaling - Buggy on Plasma
QT_SCALE_FACTOR=1.75 # QT_SCALE_FACTOR=1.75
# 2 * 0.875 = 1.75 # # 2 * 0.875 = 1.75
GDK_SCALE=2 # GDK_SCALE=2
GDK_DPI_SCALE=0.875 # GDK_DPI_SCALE=0.875

View file

@ -0,0 +1,14 @@
# /etc/keyd/default.conf
[ids]
*
[main]
# Maps capslock to escape when pressed and control when held.
capslock= overload(control, esc)
enter= overload(control, enter)
backspace= \
\= backspace
tab=overload(alt, tab)

View file

@ -64,7 +64,7 @@ if command -v pacman > /dev/null
abbr --add pacu "sudo pacman -Syu" abbr --add pacu "sudo pacman -Syu"
if command -v paru > /dev/null if command -v paru > /dev/null
abbr --add pacs "paru -Ss" abbr --add pacs "paru -Ss"
elif command -v yay > /dev/null else if command -v yay > /dev/null
abbr --add pacs "yay -Ss" abbr --add pacs "yay -Ss"
else else
abbr --add pacs "pacman -Ss" abbr --add pacs "pacman -Ss"

View file

@ -58,5 +58,17 @@
"k": "search::SelectNextMatch", "k": "search::SelectNextMatch",
"K": "search::SelectPrevMatch" "K": "search::SelectPrevMatch"
} }
},
{
"context": "ProjectPanel && not_editing",
"bindings": {
"n": "menu::SelectNext",
"e": "menu::SelectPrev",
"i": "project_panel::ExpandSelectedEntry",
"A": "project_panel::NewDirectory",
"a": "project_panel::NewFile",
"d": "project_panel::Delete"
}
} }
] ]

View file

@ -18,9 +18,10 @@
// custom settings, run `zed: open default settings` from the // custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p) // command palette (cmd-shift-p / ctrl-shift-p)
{ {
"base_keymap": "VSCode",
"vim_mode": true, "vim_mode": true,
"ui_font_size": 16, "ui_font_size": 16,
"buffer_font_size": 16, "buffer_font_size": null,
"theme": { "theme": {
"mode": "dark", "mode": "dark",
"light": "Catppuccin Latte", "light": "Catppuccin Latte",