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"] import = ["~/.config/alacritty/dracula.toml"]
[[keyboard.bindings]] [[keyboard.bindings]]
action = "SpawnNewInstance"
key = "Return"
mods = "Control|Shift"
[keyboard] [[keyboard.bindings]]
bindings = [ action = "SearchForward"
{ key = "Right", mods = "Alt", chars = "\u001BF" }, key = "F"
{ key = "Left", mods = "Alt", chars = "\u001BB" }, mods = "Control"
{ key = "V", mods = "Control|Shift", action = "Paste" },
{ key = "F", mods = "Control", action = "SearchForward" }, [[keyboard.bindings]]
{ key = "Space", mods = "Control", chars = "\u0000" }, action = "Paste"
{ key = "Return", mods = "Control|Shift", action = "SpawnNewInstance" }, key = "V"
] mods = "Control|Shift"
[[keyboard.bindings]]
chars = "\u0000"
key = "Space"
mods = "Control"
[font] [font]
size = 22 size = 22
@ -53,6 +61,8 @@ y = 0
[selection] [selection]
save_to_clipboard = true save_to_clipboard = true
[keyboard]
# Unused # Unused
[colors.bright] [colors.bright]
black = "0x7f7f7f" 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 au BufRead,BufNewFile *.yaml,*.yml if search('hosts:\|tasks:', 'nw') | set ft=yaml.ansible | endif
autocmd BufWritePre *.yaml,*.yml silent! undojoin | Neoformat prettier autocmd BufWritePre *.yaml,*.yml silent! undojoin | Neoformat prettier
" JSON
autocmd BufWritePre *.json silent! undojoin | Neoformat prettier
" GoLang " GoLang
autocmd BufRead *.go set noexpandtab autocmd BufRead *.go set noexpandtab
autocmd BufWritePre *.go lua go_org_imports() autocmd BufWritePre *.go lua go_org_imports()