Compare commits

..

1 Commits

Author SHA1 Message Date
lelgenio f2f7a41af5 work stuff 2022-10-24 17:32:37 -03:00
5 changed files with 7 additions and 9 deletions

View File

@ -134,6 +134,8 @@ profiles:
accent_teal: {variables: {accent_color: "#16A085"}}
accent_magenta: {variables: {accent_color: "#9C27B0"}}
accent_orange: {variables: {accent_color: "#D93200"}}
accent_gold: {variables: {accent_color: "#E2A532"}}
###############################################################
# Keyboard Layouts

View File

@ -42,7 +42,7 @@
#{%@@ endif @@%}#
[alias]
graph = log --graph --oneline --all
graph = log --graph --oneline --branches
root = rev-parse --show-toplevel
{%@@ if tabs @@%}

View File

@ -6,7 +6,7 @@
# |_|\_\__,_|_|\_\ |_____|____/|_|
snippet_support = true
snippet_support = false
verbosity = 2
[server]

View File

@ -59,12 +59,6 @@ hook global BufCreate .*\.(tera|askama)\.?.* %[
add-highlighter buffer/jinja ref jinja
]
hook global WinSetOption filetype=rust %[
require-module rust
require-module html
add-highlighter shared/rust/html region -recurse '\{' 'html!\s*\{\K' '(?=\})' ref html
]
hook global WinSetOption filetype=sql %[
set buffer comment_line '--'
]

View File

@ -14,7 +14,9 @@ end(){
if [ $# -ne 0 ] ; then
for i in "$@" ; do
printf "%s\n" "$i"
if test -f "$i"; then
printf "%s\n" "$i"
fi
done | "$0"
exit $?
fi