Compare commits

..

No commits in common. "446cc2682a717ee3efcf937538ff0a7762c0ce46" and "5dd29e237eeaa27ff892d6762a4b9a7b8c317088" have entirely different histories.

2 changed files with 19 additions and 12 deletions

View File

@ -6,16 +6,24 @@ TERM = "xterm-256color"
import = ["~/.config/alacritty/dracula.toml"]
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "Return"
mods = "Control|Shift"
[keyboard]
bindings = [
{ key = "Right", mods = "Alt", chars = "\u001BF" },
{ key = "Left", mods = "Alt", chars = "\u001BB" },
{ key = "V", mods = "Control|Shift", action = "Paste" },
{ key = "F", mods = "Control", action = "SearchForward" },
{ key = "Space", mods = "Control", chars = "\u0000" },
{ key = "Return", mods = "Control|Shift", action = "SpawnNewInstance" },
]
[[keyboard.bindings]]
action = "SearchForward"
key = "F"
mods = "Control"
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
chars = "\u0000"
key = "Space"
mods = "Control"
[font]
size = 22
@ -53,6 +61,8 @@ y = 0
[selection]
save_to_clipboard = true
[keyboard]
# Unused
[colors.bright]
black = "0x7f7f7f"

View File

@ -642,9 +642,6 @@ autocmd BufRead,BufNewFile *.yaml,*.yml let g:indentLine_char = '⦙'
au BufRead,BufNewFile *.yaml,*.yml if search('hosts:\|tasks:', 'nw') | set ft=yaml.ansible | endif
autocmd BufWritePre *.yaml,*.yml silent! undojoin | Neoformat prettier
" JSON
autocmd BufWritePre *.json silent! undojoin | Neoformat prettier
" GoLang
autocmd BufRead *.go set noexpandtab
autocmd BufWritePre *.go lua go_org_imports()