new Sublime build systems
This commit is contained in:
parent
ca376f42ed
commit
9621159d67
6 changed files with 54 additions and 2 deletions
5
sublime/CSS.sublime-settings
Normal file
5
sublime/CSS.sublime-settings
Normal file
|
@ -0,0 +1,5 @@
|
|||
// These settings override both User and Default settings for the CSS syntax
|
||||
{
|
||||
"tab_size": 2,
|
||||
"translate_tabs_to_spaces": true,
|
||||
}
|
15
sublime/LanguageTool.sublime-settings
Normal file
15
sublime/LanguageTool.sublime-settings
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
{
|
||||
"languagetool_server_remote": "https://languagetool.org/api/v2/check",
|
||||
"languagetool_server_local": "http://localhost:8081/v2/check",
|
||||
"default_server": "local",
|
||||
"display_mode": "panel",
|
||||
"languagetool_jar": "/home/adrien/src/LanguageTool-5.6/languagetool.jar",
|
||||
"highlight-scope": "comment",
|
||||
"ignored-scopes": [
|
||||
"support.function.*.latex",
|
||||
"meta.*.latex",
|
||||
"comment.*.tex",
|
||||
"keyword.control.tex"
|
||||
]
|
||||
}
|
4
sublime/MakeLocal.sublime-build
Normal file
4
sublime/MakeLocal.sublime-build
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"working_dir": "${file_path}",
|
||||
"cmd": ["make"]
|
||||
}
|
17
sublime/NixPaper.sublime-build
Normal file
17
sublime/NixPaper.sublime-build
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"selector": "text.tex.latex",
|
||||
"working_dir": "$folder",
|
||||
"cancel": {"kill": true},
|
||||
"shell_cmd" : "nix-shell --run 'make paper'",
|
||||
"file_regex": "^(?:W|E|B):\\s(.*):([0-9]+)",
|
||||
"variants": [
|
||||
{
|
||||
"name": "Clean",
|
||||
"shell_cmd" : "nix-shell --run 'make clean'",
|
||||
},
|
||||
{
|
||||
"name": "Push",
|
||||
"shell_cmd" : "aws --endpoint-url https://garage.deuxfleurs.fr s3 cp paper/main.pdf s3://adrien/main.pdf",
|
||||
}
|
||||
]
|
||||
}
|
|
@ -12,9 +12,11 @@
|
|||
"DocBlockr_Python",
|
||||
"Dockerfile Syntax Highlighting",
|
||||
"ExportHtml",
|
||||
"GitGutter",
|
||||
"Helium",
|
||||
"HTML-CSS-JS Prettify",
|
||||
"Language - French - Français",
|
||||
"LanguageTool",
|
||||
"LaTeXing",
|
||||
"LaTeXTools",
|
||||
"Markdown Extended",
|
||||
|
|
|
@ -102,10 +102,18 @@
|
|||
"jacente",
|
||||
"plateforme",
|
||||
"massification",
|
||||
"seemlessly",
|
||||
"testbed",
|
||||
"adressabilité",
|
||||
"Spirals",
|
||||
"dynamicité",
|
||||
"scalabilité",
|
||||
"latencies",
|
||||
"liveness",
|
||||
],
|
||||
"close_windows_when_empty": false,
|
||||
"color_scheme": "Packages/User/predawn (Flake8Lint).tmTheme",
|
||||
"dictionary": "Packages/Language - French - Français/fr_FR.dic",
|
||||
"dictionary": "Packages/Language - English/en_US.dic",
|
||||
"find_selected_text": true,
|
||||
"font_face": "Fira Code",
|
||||
"font_size": 11,
|
||||
|
@ -128,8 +136,9 @@
|
|||
"ignored_words":
|
||||
[
|
||||
"",
|
||||
"Inria",
|
||||
"cloud",
|
||||
"prequential"
|
||||
"prequential",
|
||||
],
|
||||
"predawn_findreplace_small": true,
|
||||
"predawn_quick_panel_small": true,
|
||||
|
|
Loading…
Reference in a new issue