Updates
This commit is contained in:
+6
-1
@@ -638,7 +638,7 @@ semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
|||||||
[window]
|
[window]
|
||||||
decorations = "none"
|
decorations = "none"
|
||||||
dynamic_title = false
|
dynamic_title = false
|
||||||
opacity = 0.6
|
opacity = 0.85
|
||||||
|
|
||||||
[window.dimensions]
|
[window.dimensions]
|
||||||
columns = 0
|
columns = 0
|
||||||
@@ -647,3 +647,8 @@ lines = 0
|
|||||||
[window.padding]
|
[window.padding]
|
||||||
x = 0
|
x = 0
|
||||||
y = 0
|
y = 0
|
||||||
|
|
||||||
|
[[keyboard.bindings]]
|
||||||
|
key = "Return"
|
||||||
|
mods = "Shift"
|
||||||
|
chars = "\u001B\r"
|
||||||
|
|||||||
@@ -251,5 +251,12 @@ vim.lsp.config['java'] = {
|
|||||||
}
|
}
|
||||||
vim.lsp.enable('java')
|
vim.lsp.enable('java')
|
||||||
|
|
||||||
|
-- Typst
|
||||||
|
vim.lsp.config['typst'] = {
|
||||||
|
cmd = { 'tinymist' },
|
||||||
|
filetypes = { 'typst' }
|
||||||
|
}
|
||||||
|
vim.lsp.enable('typst')
|
||||||
|
|
||||||
-- Import custom config
|
-- Import custom config
|
||||||
require("extraconfig")
|
require("extraconfig")
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ alias cd....="cd ../../.."
|
|||||||
# Colored ip
|
# Colored ip
|
||||||
alias ip="ip -c"
|
alias ip="ip -c"
|
||||||
|
|
||||||
|
# QR code in terminal
|
||||||
|
alias qr="qrencode -t utf8"
|
||||||
|
|
||||||
# Alias for ls
|
# Alias for ls
|
||||||
command -v exa > /dev/null 2>&1
|
command -v exa > /dev/null 2>&1
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ else
|
|||||||
export EDITOR="vim"
|
export EDITOR="vim"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# gpg-agent requires this
|
||||||
|
export GPG_TTY=$(tty)
|
||||||
|
|
||||||
# Parallel conpilation with make
|
# Parallel conpilation with make
|
||||||
export MAKEFLAGS="-j`nproc`"
|
export MAKEFLAGS="-j`nproc`"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user