From d9a3ed43757046e9623fad30e49e47549bf320ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Jun 2024 13:47:14 +0200 Subject: [PATCH 1/4] Hyprland update --- .config/hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 58303ae..3d8a2cd 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -95,7 +95,7 @@ dwindle { master { # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more - new_is_master = true + new_status = master } gestures { From b8b70bd9e4b2faf47cece7ad78eaaafe5cbb0160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Jun 2024 13:48:08 +0200 Subject: [PATCH 2/4] Use zoxide --- .config/zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 0f5d203..0595b90 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -42,6 +42,9 @@ fi [ -f "/usr/share/skim/key-bindings.zsh" ] && . /usr/share/skim/key-bindings.zsh [ -f "/usr/share/skim/completion.zsh" ] && . /usr/share/skim/completion.zsh +# zoxide +hash zoxide 2>/dev/null && eval "$(zoxide init zsh)" + # Java # # Use `archlinux-java` to change the default Java environment. From d1b4005a4b57ae18ed2a90d7c2785113680aa978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Jun 2024 13:49:44 +0200 Subject: [PATCH 3/4] Update the mimeapps list --- .config/mimeapps.list | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.config/mimeapps.list b/.config/mimeapps.list index 4eb4106..6dc521a 100644 --- a/.config/mimeapps.list +++ b/.config/mimeapps.list @@ -1,14 +1,18 @@ [Default Applications] -application/pdf=org.pwmt.zathura.desktop;atril.desktop -text/csv=org.gnome.gedit.desktop; -text/markdown=org.gnome.gedit.desktop; -text/plain=org.gnome.gedit.desktop;vim.desktop +application/pdf=atril.desktop;org.pwmt.zathura.desktop +application/x-pdf=atril.desktop;org.pwmt.zathura.desktop +application/x-bzpdf=atril.desktop;org.pwmt.zathura.desktop +application/x-gzpdf=atril.desktop;org.pwmt.zathura.desktop + +text/csv=org.gnome.gedit.desktop +text/markdown=org.gnome.gedit.desktop +text/plain=org.gnome.gedit.desktop image/bmp=org.xfce.ristretto.desktop;gimp.desktop image/gif=org.xfce.ristretto.desktop;gimp.desktop image/jpeg=org.xfce.ristretto.desktop;gimp.desktop -image/png=org.xfce.ristretto.desktop;gimp.desktop; +image/png=org.xfce.ristretto.desktop;gimp.desktop image/svg+xml=org.xfce.ristretto.desktop;gimp.desktop image/webp=org.xfce.ristretto.desktop;gimp.desktop image/x-canon-cr2=darktable.desktop;ristretto.desktop;gimp.desktop From 336866016b8012371a60aeb0d717a878e780fc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Jun 2024 13:50:41 +0200 Subject: [PATCH 4/4] Add a vim plugin for svelte --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index d51a502..0ca946c 100644 --- a/.vimrc +++ b/.vimrc @@ -13,6 +13,7 @@ Plug 'cespare/vim-toml' " Vim syntax for TOML. Plug 'editorconfig/editorconfig-vim' " EditorConfig plugin Plug 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level Plug 'leafOfTree/vim-vue-plugin' " Vim syntax and indent plugin for .vue files. +Plug 'leafOfTree/vim-svelte-plugin' " Vim syntax and indent plugin for .svelte files. call plug#end()