Compare commits

..

11 Commits

7 changed files with 181 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
dictionaries = [
"fr",
"en_gb",
]
words = ["oxlint"]

View File

@@ -11,13 +11,13 @@ output "eDP-1" {
output "Dell Inc. DELL P2414H KKMMW62M0YKU" {
alias $OFFICE_CENTER
mode 1920x1080@60
position 0,0
position 1920,0
}
output "Hewlett Packard LA2405 CN41150LLN" {
alias $OFFICE_RIGHT
mode 1920x1200@59.950
position 1920,0
position 3840,0
}
# === Home ===
@@ -25,20 +25,20 @@ output "Hewlett Packard LA2405 CN41150LLN" {
output "Iiyama North America PL2470H 0x30363738" {
alias $HOME_LEFT
mode 1920x1080@120
position -1920,0
position 0,0
}
output "AOC Q24G4 VH0R3HA002164" {
alias $HOME_CENTER
mode 2560x1440@120
position 0,0
position 1920,0
scale 1.25
}
output "Iiyama North America PL2470H 0x30363735" {
alias $HOME_RIGHT
mode 1920x1080@60
position 2048,-235
position 3968,-235
transform 270
}
@@ -69,7 +69,7 @@ profile Home {
}
profile Office {
output $INTERNAL enable position -1920,0
output $INTERNAL enable position 0,0
output $OFFICE_CENTER enable
output $OFFICE_RIGHT enable

View File

@@ -69,7 +69,8 @@
"format": "{icon}",
"format-icons": {
"none": "󰅺",
"notification": "󰡟"
"notification": "󰡟",
"dnd-notification": "󱙍"
},
"on-click": "sleep 0.1 && swaync-client -t -sw",
"return-type": "json",

View File

@@ -4,6 +4,14 @@ Host vd-ezt
Host *-ezt
User outline
# ezDoc
Host vd-ezdoc
HostName vdezdoc.intra.inist.fr
Host vi-ezdoc
HostName viezdoc.intra.inist.fr
Host *-ezdoc
User ezdoc
# ezMesure
Host vd-ezm
HostName vdezmesure.intra.inist.fr
@@ -14,7 +22,7 @@ Host *-ezm
# ezPaarse
Host vd-ezp
HostName vpezpaarse.intra.inist.fr
HostName vdezpaarse.intra.inist.fr
Host vi-ezp
HostName viezpaarse2.intra.inist.fr
Host vp-ezp
@@ -25,18 +33,13 @@ Host *-ezp
# Analogist
Host vd-analogist
HostName vdanalogist.intra.inist.fr
IdentityFile analogist
Host vi-analogist
HostName vianalogist1.intra.inist.fr
Host vp-analogist
HostName vpanalogist.intra.inist.fr
# PubkeyAcceptedKeyTypes +ssh-rsa,ssh-dss
# HostKeyAlgorithms=+ssh-rsa
Host *-analogist
User analogist
# Bibliomap
Host vp-biblio
HostName vpbibliomap.intra.inist.fr
Host *-biblio
User bibliomap
@@ -54,6 +57,22 @@ Host vd-readholdings
Host *-readholdings
User readholdings
# ReadLabs
Host vd-readlabs
HostName vdreadlabs.intra.inist.fr
Host vi-readlabs
HostName vireadlabs.intra.inist.fr
Host *-readlabs
User readlabs
# ezDoc
Host vd-ezdoc
HostName vdezdoc.intra.inist.fr
Host vi-ezdoc
HostName viezdoc.intra.inist.fr
Host *-ezdoc
User ezdoc
# =====
# ezMeta K3S
Host vk0-ezmeta-k3s
@@ -85,4 +104,4 @@ Host vk*-ez*-k3s
# Global
Host *
IdentityFile ~/.ssh/id_rsa
SetEnv TERM=xterm

View File

@@ -0,0 +1,16 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Editor",
"bindings": {
"ctrl-k ctrl-c": "editor::ToggleComments",
"ctrl-k ctrl-u": "editor::ToggleComments"
}
}
]

View File

@@ -0,0 +1,120 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"disable_ai": true,
"vim_mode": false,
"telemetry": {
"metrics": false,
"diagnostics": false
},
"base_keymap": "VSCode",
"theme": "One Dark - Darkened",
"icon_theme": "Catppuccin Mocha",
"ui_font_size": 14,
"buffer_font_size": 12,
"buffer_font_family": "FiraCode Nerd Font Mono",
"buffer_line_height": "standard",
"buffer_font_features": {
"calt": true
},
"bottom_dock_layout": "left_aligned",
"terminal": {
"font_family": "FiraCode Nerd Font Mono",
"font_size": 12,
"line_height": "standard",
"toolbar": {
"breadcrumbs": false
},
"font_features": {
"calt": true
}
},
"minimap": {
"show": "auto"
},
"tabs": {
"file_icons": true,
"git_status": true,
"show_diagnostics": "all"
},
"project_panel": {
"entry_spacing": "standard"
},
"agent": {
"default_profile": "ask",
"default_model": {
"provider": "zed.dev",
"model": "claude-sonnet-4"
}
},
"show_edit_predictions": false,
"collaboration_panel": {
"button": false
},
"notification_panel": {
"button": false
},
"title_bar": {
"show_branch_icon": true
},
"tab_bar": {
"show_nav_history_buttons": false
},
"toolbar": {
"agent_review": false,
"code_actions": true
},
"diagnostics": {
"inline": {
"enabled": true,
"max_severity": "warning"
}
},
"inlay_hints": {
"enabled": true,
"show_type_hints": false
},
"indent_guides": {
"coloring": "indent_aware"
},
"tab_size": 2,
"show_whitespaces": "trailing",
"wrap_guides": [110],
"inline_code_actions": false,
"relative_line_numbers": true,
"file_types": {
"JSONC": [".oxlintrc.json"]
},
"languages": {
"YAML": {
"format_on_save": "off"
}
}
}

5
.zshrc
View File

@@ -109,6 +109,7 @@ plugins=(
nvm
sudo
command-not-found
you-should-use
fzf-tab
zsh-autosuggestions
zsh-syntax-highlighting
@@ -127,6 +128,7 @@ eval "$(oh-my-posh init zsh --config ~/.p10k.omp.json)"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
export EDITOR="hx"
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
@@ -157,6 +159,9 @@ alias grep="ugrep"
alias curl="curlie"
# alias code="snap run code"
alias docker-compose="PODMAN_COMPOSE_PROVIDER=/usr/libexec/docker/cli-plugins/docker-compose podman compose"
# Funny work aliases
alias rip-yannick="gh pr create -w"
alias rip-leo="rip-yannick"
# Generated for envman. Do not edit.
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"