Compare commits
3 Commits
6dada85af3
...
9dc7c5f053
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9dc7c5f053 | ||
|
|
a33e986cde | ||
|
|
1171e23373 |
@@ -2,11 +2,7 @@
|
|||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
# Terminal
|
# Terminal
|
||||||
set $term foot
|
set $term foot
|
||||||
# Menu command
|
# Launcher
|
||||||
set $rofi_cmd rofi -terminal '$term'
|
set $menu vicinae
|
||||||
# TODO: add window with the next release of rofi-wayland
|
|
||||||
set $menu $rofi_cmd -show combi -combi-modes drun#emoji -modes combi#calc#window
|
|
||||||
# Clipboard manager
|
|
||||||
set $clip_menu $rofi_cmd -modi clipboard:~/.config/rofi/cliphist-rofi-img -show clipboard
|
|
||||||
# Browser
|
# Browser
|
||||||
set $browser ~/AppImages/zen_browser.appimage
|
set $browser ~/AppImages/zen_browser.appimage
|
||||||
|
|||||||
@@ -22,9 +22,11 @@ bindsym {
|
|||||||
# Kill focused window
|
# Kill focused window
|
||||||
$mod+Shift+q kill
|
$mod+Shift+q kill
|
||||||
# Start your launcher
|
# Start your launcher
|
||||||
$mod+Space exec $menu
|
$mod+Space exec $menu toggle
|
||||||
# Clipboard history
|
# Clipboard history
|
||||||
$mod+Shift+v exec $clip_menu
|
$mod+Shift+v exec $menu vicinae://launch/clipboard/history
|
||||||
|
# Emoji picker
|
||||||
|
$mod+period exec $menu vicinae://launch/core/search-emojis
|
||||||
# Reload the configuration file
|
# Reload the configuration file
|
||||||
$mod+Shift+c reload
|
$mod+Shift+c reload
|
||||||
# Exit sway (logs you out of your Wayland session)
|
# Exit sway (logs you out of your Wayland session)
|
||||||
@@ -169,4 +171,4 @@ mode "resize" {
|
|||||||
bindsym Escape mode "default"
|
bindsym Escape mode "default"
|
||||||
}
|
}
|
||||||
|
|
||||||
bindsym $mod+r mode "resize"
|
bindsym $mod+r mode "resize"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ input "13364:2384:Keychron_Keychron_V5_Max" {
|
|||||||
xkb_options "compose:rctrl"
|
xkb_options "compose:rctrl"
|
||||||
}
|
}
|
||||||
|
|
||||||
input "13364:53296:Keychron__Keychron_Link__Keyboard" {
|
input "13364:2384:Keychron_V5_Max_Keyboard" {
|
||||||
xkb_layout us
|
xkb_layout us
|
||||||
xkb_options "compose:rctrl"
|
xkb_options "compose:rctrl"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,17 @@
|
|||||||
|
## SHELL
|
||||||
|
|
||||||
|
# OSD
|
||||||
|
exec swayosd-server
|
||||||
# Notification daemon
|
# Notification daemon
|
||||||
exec swaync
|
exec swaync
|
||||||
# Clipboard history
|
# Launcher
|
||||||
exec wl-paste --watch cliphist store
|
exec vicinae server
|
||||||
|
|
||||||
|
## GUI
|
||||||
|
|
||||||
# NextCloud
|
# NextCloud
|
||||||
exec QT_QPA_PLATFORM=xcb ~/AppImages/client_de_synchronisation_nextcloud.appimage
|
exec QT_QPA_PLATFORM=xcb ~/AppImages/client_de_synchronisation_nextcloud.appimage
|
||||||
# KeePass
|
# KeePass
|
||||||
exec flatpak run org.keepassxc.KeePassXC
|
exec flatpak run org.keepassxc.KeePassXC
|
||||||
|
# EasyEffects
|
||||||
|
exec flatpak run com.github.wwmm.easyeffects --service-mode
|
||||||
|
|||||||
@@ -1,11 +1,27 @@
|
|||||||
for_window [app_id="Zoom Workplace"] {
|
for_window [class="zoom" title="^zoom$"] {
|
||||||
|
border none
|
||||||
floating enable
|
floating enable
|
||||||
}
|
}
|
||||||
|
|
||||||
for_window [app_id="Zoom Workplace" title="Zoom Workplace - Free Account"] {
|
# For specific Zoom windows
|
||||||
floating disable
|
for_window [class="zoom" title="^(Zoom|About)$"] {
|
||||||
|
border pixel
|
||||||
|
floating enable
|
||||||
}
|
}
|
||||||
|
|
||||||
for_window [app_id="Zoom Workplace" title="Meeting"] {
|
for_window [class="zoom" title="Settings"] {
|
||||||
floating disable
|
floating enable
|
||||||
|
floating_minimum_size 960 x 700
|
||||||
|
}
|
||||||
|
|
||||||
|
for_window [class="zoom" title="annotate_toolbar"] {
|
||||||
|
floating enable
|
||||||
|
}
|
||||||
|
|
||||||
|
# Open Zoom Meeting windows on a new workspace (a bit hacky)
|
||||||
|
for_window [class="zoom" title="Zoom Meeting(.*)?"] {
|
||||||
|
workspace next_on_output --create
|
||||||
|
move container to workspace current
|
||||||
|
floating disable
|
||||||
|
inhibit_idle open
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,11 +7,19 @@
|
|||||||
// 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)
|
||||||
{
|
{
|
||||||
"disable_ai": true,
|
"cli_default_open_behavior": "existing_window",
|
||||||
|
"outline_panel": {
|
||||||
|
"dock": "left",
|
||||||
|
},
|
||||||
|
"edit_predictions": {
|
||||||
|
"mode": "subtle",
|
||||||
|
"provider": "codestral",
|
||||||
|
},
|
||||||
|
"disable_ai": false,
|
||||||
"vim_mode": false,
|
"vim_mode": false,
|
||||||
"telemetry": {
|
"telemetry": {
|
||||||
"metrics": false,
|
"metrics": false,
|
||||||
"diagnostics": false
|
"diagnostics": false,
|
||||||
},
|
},
|
||||||
|
|
||||||
"base_keymap": "VSCode",
|
"base_keymap": "VSCode",
|
||||||
@@ -23,84 +31,130 @@
|
|||||||
"buffer_font_family": "FiraCode Nerd Font Mono",
|
"buffer_font_family": "FiraCode Nerd Font Mono",
|
||||||
"buffer_line_height": "standard",
|
"buffer_line_height": "standard",
|
||||||
"buffer_font_features": {
|
"buffer_font_features": {
|
||||||
"calt": true
|
"calt": true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"bottom_dock_layout": "left_aligned",
|
"bottom_dock_layout": "left_aligned",
|
||||||
|
|
||||||
"terminal": {
|
"terminal": {
|
||||||
|
"shell": {
|
||||||
|
"with_arguments": {
|
||||||
|
"program": "/app/bin/host-spawn",
|
||||||
|
"args": ["zsh"],
|
||||||
|
},
|
||||||
|
},
|
||||||
"font_family": "FiraCode Nerd Font Mono",
|
"font_family": "FiraCode Nerd Font Mono",
|
||||||
"font_size": 12,
|
"font_size": 12,
|
||||||
"line_height": "standard",
|
"line_height": "standard",
|
||||||
"toolbar": {
|
"toolbar": {},
|
||||||
"breadcrumbs": false
|
|
||||||
},
|
|
||||||
"font_features": {
|
"font_features": {
|
||||||
"calt": true
|
"calt": true,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
"minimap": {
|
"minimap": {
|
||||||
"show": "auto"
|
"show": "auto",
|
||||||
},
|
},
|
||||||
|
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"file_icons": true,
|
"file_icons": true,
|
||||||
"git_status": true,
|
"git_status": true,
|
||||||
"show_diagnostics": "all"
|
"show_diagnostics": "all",
|
||||||
|
},
|
||||||
|
|
||||||
|
"sticky_scroll": {
|
||||||
|
"enabled": true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"project_panel": {
|
"project_panel": {
|
||||||
"entry_spacing": "standard"
|
"hide_hidden": true,
|
||||||
|
"hide_root": true,
|
||||||
|
"diagnostic_badges": true,
|
||||||
|
"dock": "left",
|
||||||
|
"entry_spacing": "standard",
|
||||||
},
|
},
|
||||||
|
|
||||||
"agent": {
|
"agent": {
|
||||||
|
"sidebar_side": "right",
|
||||||
|
"dock": "right",
|
||||||
|
"favorite_models": [
|
||||||
|
{
|
||||||
|
"provider": "mistral",
|
||||||
|
"model": "codestral-latest",
|
||||||
|
"enable_thinking": false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"button": true,
|
||||||
"default_profile": "ask",
|
"default_profile": "ask",
|
||||||
"default_model": {
|
"default_model": {
|
||||||
"provider": "zed.dev",
|
"provider": "mistral",
|
||||||
"model": "claude-sonnet-4"
|
"model": "codestral-latest",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"auto_signature_help": true,
|
||||||
"show_edit_predictions": false,
|
"show_edit_predictions": false,
|
||||||
|
|
||||||
"collaboration_panel": {
|
"collaboration_panel": {
|
||||||
"button": false
|
"dock": "left",
|
||||||
|
"button": false,
|
||||||
},
|
},
|
||||||
|
|
||||||
"notification_panel": {
|
"git_panel": {
|
||||||
"button": false
|
"dock": "left",
|
||||||
|
"sort_by_path": false,
|
||||||
|
"tree_view": true,
|
||||||
},
|
},
|
||||||
|
"git": {
|
||||||
|
"inline_blame": {
|
||||||
|
"show_commit_summary": true,
|
||||||
|
// Wrap Guide + 1
|
||||||
|
"min_column": 111,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"git_hosting_providers": [
|
||||||
|
{
|
||||||
|
"name": "VX GitLab INIST",
|
||||||
|
"base_url": "https://vxgitlab.intra.inist.fr",
|
||||||
|
"provider": "gitlab",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "VE GitLab INIST",
|
||||||
|
"base_url": "https://vegitlab.intra.inist.fr",
|
||||||
|
"provider": "gitlab",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
"title_bar": {
|
"title_bar": {
|
||||||
"show_branch_icon": true
|
"show_branch_status_icon": true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"tab_bar": {
|
"tab_bar": {
|
||||||
"show_nav_history_buttons": false
|
"show_nav_history_buttons": false,
|
||||||
},
|
},
|
||||||
|
|
||||||
"toolbar": {
|
"toolbar": {
|
||||||
"agent_review": false,
|
"agent_review": false,
|
||||||
"code_actions": true
|
"code_actions": true,
|
||||||
},
|
},
|
||||||
|
|
||||||
"diagnostics": {
|
"diagnostics": {
|
||||||
"inline": {
|
"inline": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"max_severity": "warning"
|
"max_severity": "warning",
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
"inlay_hints": {
|
"inlay_hints": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"show_type_hints": false
|
"show_type_hints": false,
|
||||||
},
|
},
|
||||||
|
|
||||||
"indent_guides": {
|
"indent_guides": {
|
||||||
"coloring": "indent_aware"
|
"coloring": "indent_aware",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"colorize_brackets": true,
|
||||||
"tab_size": 2,
|
"tab_size": 2,
|
||||||
"show_whitespaces": "trailing",
|
"show_whitespaces": "trailing",
|
||||||
"wrap_guides": [110],
|
"wrap_guides": [110],
|
||||||
@@ -110,12 +164,20 @@
|
|||||||
|
|
||||||
"file_types": {
|
"file_types": {
|
||||||
"JSONC": [".oxlintrc.json"],
|
"JSONC": [".oxlintrc.json"],
|
||||||
"HTML": ["**/*.mjml"]
|
"HTML": ["**/*.mjml"],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"hidden_files": ["**/node_modules"],
|
||||||
|
|
||||||
"languages": {
|
"languages": {
|
||||||
|
"Vue.js": {
|
||||||
|
"show_edit_predictions": true,
|
||||||
|
},
|
||||||
|
"TypeScript": {
|
||||||
|
"show_edit_predictions": true,
|
||||||
|
},
|
||||||
"YAML": {
|
"YAML": {
|
||||||
"format_on_save": "off"
|
"format_on_save": "off",
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
6
.zshenv
6
.zshenv
@@ -1,3 +1,9 @@
|
|||||||
|
# PNPM
|
||||||
|
PNPM_BIN=$HOME/.local/share/pnpm/bin
|
||||||
|
LOCAL_BIN=$HOME/.local/bin
|
||||||
|
|
||||||
|
PATH=$PNPM_BIN:$LOCAL_BIN:$PATH
|
||||||
|
|
||||||
# Cargo / Rust
|
# Cargo / Rust
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
|
|
||||||
|
|||||||
2
.zshrc
2
.zshrc
@@ -150,7 +150,7 @@ alias df="duf --hide-fs squashfs,tmpfs,efivarfs,devtmpfs"
|
|||||||
# alias cd="zoxide"
|
# alias cd="zoxide"
|
||||||
alias grep="ugrep"
|
alias grep="ugrep"
|
||||||
alias curl="curlie"
|
alias curl="curlie"
|
||||||
# alias code="snap run code"
|
alias zed="flatpak run dev.zed.Zed"
|
||||||
alias docker-compose="PODMAN_COMPOSE_PROVIDER=/usr/libexec/docker/cli-plugins/docker-compose podman compose"
|
alias docker-compose="PODMAN_COMPOSE_PROVIDER=/usr/libexec/docker/cli-plugins/docker-compose podman compose"
|
||||||
# Funny work aliases
|
# Funny work aliases
|
||||||
alias rip-yannick="gh pr create -w"
|
alias rip-yannick="gh pr create -w"
|
||||||
|
|||||||
Reference in New Issue
Block a user