wezterm: disables mouse select copy

vscode: adds lua extension
gnome: adds updated list
This commit is contained in:
Menno van Leeuwen 2024-08-24 01:39:03 +02:00
parent 183b688617
commit b1d4e97af9
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE
3 changed files with 55 additions and 35 deletions

View File

@ -5,39 +5,59 @@ local wezterm = require 'wezterm'
local config = wezterm.config_builder() local config = wezterm.config_builder()
config.font = wezterm.font("MesloLGS NF") config.font = wezterm.font("MesloLGS NF")
config.mouse_bindings = {{
event = {
Up = {
streak = 1,
button = "Left"
}
},
mods = "NONE",
action = wezterm.action.Nop
}}
config.keys = { config.keys = { -- Ctrl+K for to clear the terminal
-- Ctrl+K for to clear the terminal {
{ key = 'k',
key = 'k', mods = 'CTRL',
mods = 'CTRL', action = wezterm.action {
action = wezterm.action{ClearScrollback = "ScrollbackAndViewport"} ClearScrollback = "ScrollbackAndViewport"
}, }
-- Ctrl+T for new tab }, -- Ctrl+T for new tab
{ {
key = 't', key = 't',
mods = 'CTRL', mods = 'CTRL',
action = wezterm.action{SpawnTab="CurrentPaneDomain"} action = wezterm.action {
}, SpawnTab = "CurrentPaneDomain"
-- Ctrl+W for close tab }
{ }, -- Ctrl+W for close tab
key = 'w', {
mods = 'CTRL', key = 'w',
action = wezterm.action{CloseCurrentTab={confirm=true}} mods = 'CTRL',
}, action = wezterm.action {
-- Ctrl+s for split horizontal CloseCurrentTab = {
{ confirm = true
key = 'h', }
mods = 'CTRL', }
action = wezterm.action{SplitHorizontal={domain="CurrentPaneDomain"}} }, -- Ctrl+s for split horizontal
}, {
-- Ctrl+d for split vertical key = 'h',
{ mods = 'CTRL',
key = 'v', action = wezterm.action {
mods = 'CTRL', SplitHorizontal = {
action = wezterm.action{SplitVertical={domain="CurrentPaneDomain"}} domain = "CurrentPaneDomain"
}, }
} }
}, -- Ctrl+d for split vertical
{
key = 'v',
mods = 'CTRL',
action = wezterm.action {
SplitVertical = {
domain = "CurrentPaneDomain"
}
}
}}
-- Use default titlebar instead of the one provided by wezterm -- Use default titlebar instead of the one provided by wezterm
config.window_frame = { config.window_frame = {
@ -53,7 +73,7 @@ config.window_frame = {
button_hover_bg = '#3b3052', button_hover_bg = '#3b3052',
font = require('wezterm').font 'Roboto', font = require('wezterm').font 'Roboto',
font_size = 12, font_size = 12
} }
-- Set the default cursor style to a blinking underscore -- Set the default cursor style to a blinking underscore

View File

@ -1 +1 @@
["gsconnect@andyholmes.github.io","rounded-window-corners@fxgn","quick-settings-tweaks@qwreey","tailscale@joaophi.github.com","easy_docker_containers@red.software.systems","Battery-Health-Charging@maniacx.github.com","autohide-battery@sitnik.ru","weatheroclock@CleoMenezesJr.github.io","space-bar@luchrioh","show-desktop-button@amivaleo","gtk4-ding@smedius.gitlab.com","logomenu@aryan_k","mediacontrols@cliffniff.github.com","burn-my-windows@schneegans.github.com","CoverflowAltTab@palatis.blogspot.com","dash-to-dock@micxgx.gmail.com","blur-my-shell@aunetx","tilingshell@ferrarodomenico.com","hidetopbar@mathieu.bidon.ca"] ["gsconnect@andyholmes.github.io","hidetopbar@mathieu.bidon.ca","blur-my-shell@aunetx","rounded-window-corners@fxgn","quick-settings-tweaks@qwreey","tailscale@joaophi.github.com","easy_docker_containers@red.software.systems","Battery-Health-Charging@maniacx.github.com","autohide-battery@sitnik.ru","weatheroclock@CleoMenezesJr.github.io","space-bar@luchrioh","show-desktop-button@amivaleo","gtk4-ding@smedius.gitlab.com","logomenu@aryan_k","mediacontrols@cliffniff.github.com","burn-my-windows@schneegans.github.com","CoverflowAltTab@palatis.blogspot.com","dash-to-dock@micxgx.gmail.com","tilingshell@ferrarodomenico.com"]

View File

@ -1 +1 @@
["aaron-bond.better-comments","bmewburn.vscode-intelephense-client","christian-kohler.path-intellisense","davidanson.vscode-markdownlint","esbenp.prettier-vscode","foxundermoon.shell-format","github.copilot","github.copilot-chat","github.vscode-pull-request-github","mguellsegarra.highlight-on-copy","ms-azuretools.vscode-docker","ms-vscode-remote.remote-containers","ms-vscode-remote.remote-ssh","ms-vscode-remote.remote-ssh-edit","ms-vscode.makefile-tools","ms-vscode.remote-explorer","ms-vsliveshare.vsliveshare","nicolasvuillamy.vscode-groovy-lint","usernamehw.errorlens","vincaslt.highlight-matching-tag","vscode-icons-team.vscode-icons","warpnet.salt-lint","xdebug.php-debug","xdebug.php-pack","zobo.php-intellisense"] ["aaron-bond.better-comments","bmewburn.vscode-intelephense-client","christian-kohler.path-intellisense","davidanson.vscode-markdownlint","esbenp.prettier-vscode","foxundermoon.shell-format","github.copilot","github.copilot-chat","github.vscode-pull-request-github","mguellsegarra.highlight-on-copy","ms-azuretools.vscode-docker","ms-vscode-remote.remote-containers","ms-vscode-remote.remote-ssh","ms-vscode-remote.remote-ssh-edit","ms-vscode.makefile-tools","ms-vscode.remote-explorer","ms-vsliveshare.vsliveshare","nicolasvuillamy.vscode-groovy-lint","usernamehw.errorlens","vincaslt.highlight-matching-tag","vscode-icons-team.vscode-icons","warpnet.salt-lint","xdebug.php-debug","xdebug.php-pack","yinfei.luahelper","zobo.php-intellisense"]