From c9a9a6194939657c731c4415e763ab99f9e11a19 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Thu, 4 Jun 2026 16:35:25 +0200 Subject: [PATCH] Updates --- alacritty.toml | 7 ++++++- nvim/init.lua | 7 +++++++ zsh/aliases.zsh | 3 +++ zsh/exports.zsh | 3 +++ 4 files changed, 19 insertions(+), 1 deletion(-) diff --git a/alacritty.toml b/alacritty.toml index cd4dfc4..fb6d295 100644 --- a/alacritty.toml +++ b/alacritty.toml @@ -638,7 +638,7 @@ semantic_escape_chars = ",│`|:\"' ()[]{}<>" [window] decorations = "none" dynamic_title = false -opacity = 0.6 +opacity = 0.85 [window.dimensions] columns = 0 @@ -647,3 +647,8 @@ lines = 0 [window.padding] x = 0 y = 0 + +[[keyboard.bindings]] +key = "Return" +mods = "Shift" +chars = "\u001B\r" diff --git a/nvim/init.lua b/nvim/init.lua index 20446d4..73aeab1 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -251,5 +251,12 @@ vim.lsp.config['java'] = { } vim.lsp.enable('java') +-- Typst +vim.lsp.config['typst'] = { + cmd = { 'tinymist' }, + filetypes = { 'typst' } +} +vim.lsp.enable('typst') + -- Import custom config require("extraconfig") diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 9022383..392c0ef 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -30,6 +30,9 @@ alias cd....="cd ../../.." # Colored ip alias ip="ip -c" +# QR code in terminal +alias qr="qrencode -t utf8" + # Alias for ls command -v exa > /dev/null 2>&1 diff --git a/zsh/exports.zsh b/zsh/exports.zsh index df6f6e5..b95e7b5 100644 --- a/zsh/exports.zsh +++ b/zsh/exports.zsh @@ -6,6 +6,9 @@ else export EDITOR="vim" fi +# gpg-agent requires this +export GPG_TTY=$(tty) + # Parallel conpilation with make export MAKEFLAGS="-j`nproc`"