fill in more of readme for wezterm, remove some clickable link styles for wezterm

This commit is contained in:
Jesse Hitch 2023-05-01 09:46:17 +02:00
parent 37cafbfae3
commit a85507527e
2 changed files with 9 additions and 19 deletions

View file

@ -124,21 +124,5 @@ return {
regex = [[\b\w+://(?:[\d]{1,3}\.){3}[\d]{1,3}\S*\b]],
format = '$0',
},
-- Make task numbers clickable
-- The first matched regex group is captured in $1.
{
regex = [[\b[tT](\d+)\b]],
format = 'https://example.com/tasks/?t=$1',
},
-- Make username/project paths clickable. This implies paths like the following are for GitHub.
-- ( "nvim-treesitter/nvim-treesitter" | wbthomason/packer.nvim | wez/wezterm | "wez/wezterm.git" )
-- As long as a full URL hyperlink regex exists above this it should not match a full URL to
-- GitHub or GitLab / BitBucket (i.e. https://gitlab.com/user/project.git is still a whole clickable URL)
{
regex = [[["]?([\w\d]{1}[-\w\d]+)(/){1}([-\w\d\.]+)["]?]],
format = 'https://www.github.com/$1/$3',
},
},
}

View file

@ -534,11 +534,17 @@ These are the sensible defaults for [`onboardme`](https://github.com/jessebot/on
This file is configuration for the terminal emulator [wezterm]:
- disables bell noises
- sets font size to 12
- sets font face to [mononoki](https://madmalik.github.io/mononoki/)
- sets font size to `15`
- ignore warnings about missing glyphs
- hides tab bar if only one tab
- remove top title bar
- set background opacity to 0.7
- removes top title bar
- set background opacity to `0.95`
- change colors to a softer [spacechalk.nvim] aligned colorscheme
- maps <kbd>alt</kbd>+⬅️ to go back a word on the command line
- maps <kbd>alt</kbd>+➡️ to go forward a word on the command line
- maps <kbd>ctrl</kbd>+<kbd>s</kbd> to open a split pane to the right
- makes links clickable
</blockquote>