Misc changes

master
Mark 2022-08-03 10:51:34 -07:00
parent 4f0c720ad6
commit f5cdff4a86
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
3 changed files with 18 additions and 7 deletions

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

View File

@ -1,3 +1,3 @@
# VIM Config
To setup plugins, open vim and run `:PlugInstall`. You'll also need to generate a conceal config from `conceal_defs`, do that by running `./gen_conceal.awk conceal_defs`.
To setup plugins, open vim and run `:PlugInstall`. You'll also need to generate a conceal config from `conceal_defs`, do that by running `./gen_conceal.awk conceal_defs > conceal.vim`.

View File

@ -19,10 +19,9 @@ BEGIN {
# Extract args
p = index($0, "|")
conceal = substr($0,0,p-1)
keyword = substr($0,p+1)
string = substr($0,p+1)
# Vim config output
print ":syntax match keyword \"\\<" keyword "\\>\" conceal cchar=" conceal
print ":syntax match keyword \"\\<" string "\\>\" conceal cchar=" conceal
}