This commit is contained in:
daniel
2022-12-10 17:43:32 +01:00
parent 8baf13fed9
commit fd65585022
56 changed files with 1025 additions and 1139 deletions

View File

@@ -0,0 +1,36 @@
{
"clients":
{
"pyls":
{
"command":
[
"~/conda/bin/pyls"
],
"enabled": false
},
"rls":
{
"auto_show_diagnostics_panel_level": 1,
"command":
[
"/home/bauer/.cargo/bin/rustup",
"run",
"nightly",
"rls"
],
"diagnostics_highlight_style": "underline",
"enabled": true,
"languageId": "rust",
"scopes":
[
"source.rust"
],
"syntaxes":
[
"Packages/Rust/Rust.sublime-syntax",
"Packages/Rust Enhanced/RustEnhanced.sublime-syntax"
]
}
}
}

View File

@@ -0,0 +1,45 @@
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"Anaconda",
"ANSIescape",
"bioSyntax",
"Color Convert",
"Color Highlight",
"Color Highlighter",
"CSV Record View",
"CWL Syntax Highlighting",
"Fortran",
"Git",
"Google Spell Check",
"gruvbox",
"Incomprehensible Ex",
"INI",
"LaTeX Snippets",
"LaTeXTools",
"LaTeXYZ",
"LSP",
"MarkdownLivePreview",
"MarkdownPreview",
"NeoVintageous",
"Ninja",
"Non Text Files",
"Package Control",
"PackageResourceViewer",
"poetry",
"Pymol Language",
"RainbowBrackets",
"RemoteSubl",
"RestructuredText Improved",
"rsub",
"Rust Enhanced",
"SideBarEnhancements",
"Tabnine",
"Thesaurus",
"WordCount",
],
}

View File

@@ -0,0 +1,170 @@
{
"added_words":
[
"subprojects",
"equimolar",
"transmembrane",
"Lichtenberg",
"Gromacs",
"solvated",
"parallization",
"superfamily",
"channelopathies",
"unpolar",
"Drosophila",
"proteinaceous",
"Cryo",
"Ligand",
"ligands",
"intra",
"selectivty",
"nucleotides",
"glutamate",
"ligand",
"subunit",
"phenylalanine",
"arginines",
"conformational",
"Thermodynamically",
"reweighting",
"subunits",
"cytosolic",
"hyperpolarization",
"Energetics",
"multimers",
"cooperativity",
"oxygens",
"intercalating",
"desolvation",
"configurational",
"Phylogenic",
"subtypes",
"isoforms",
"hyperpolarizing",
"neuropathic",
"encephalopathy",
"subtype",
"repolarize",
"repolarization",
"ivabradine",
"pectoris",
"isoform",
"intracellular",
"unselective",
"Carbonyl",
"tetrad",
"atomistic",
"virial",
"rescaling",
"equipartition",
"isothermal",
"intramolecular",
"planarity",
"dihedral",
"integrators",
"Verlet",
"bilayer",
"biomolecules",
"equilibrate",
"equilibration",
"equilibrated",
"rotamer",
"allosteric",
"observables",
"polarizeable",
"childs",
"preexponential",
"wetlab",
"genotype",
"missense",
"electrophysiological",
"homozygous",
"heterozygous",
"heteromeric",
"aspartate",
"homomeric",
"solvation",
"interhelical",
"glutamic",
"carboxyl",
"electrophysiology",
"hydrophobicity",
"Waals",
"transduct",
"glycine",
"complexed",
"tetrameric",
"heterozygously",
"carbonyl",
"Titratable",
"protonated",
"pre",
"semiisotropic",
"barostat",
"unbiasing",
"bayesian",
"desolvated",
"unphysiologically",
"intercalation",
"centroid",
"unsampled",
"thermodynamically",
"combinatorial",
"energetics",
],
"auto_complete": false,
"color_scheme": "Packages/gruvbox/gruvbox (Dark) (Medium).sublime-color-scheme",
"detect_indentation": false,
"dictionary": "Packages/Language - English/en_US.dic",
"font_face": "Hack for Powerline Regular",
"font_size": 12,
"hot_exit": false,
"ignored_packages":
[
"A File Icon",
"Boxy Theme",
"DeleteBlankLines",
"Monokai - Spacegray",
"RestructuredText",
"Rust",
"Six",
"Tabnine",
"Vintage",
"Vintageous",
],
"ignored_words":
[
"backmapping",
"challanging",
"crosslink",
],
"line_numbers": true,
"neovintageous_build_version": 11100,
"open_externally_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.zip",
"*.pdf"
],
"remember_open_files": false,
"rulers":
[
80,
100,
120
],
"spell_check": true,
"tab_size": 4,
"theme": "gruvbox.sublime-theme",
"translate_tabs_to_spaces": true,
"viewer": "zathura",
"vintage_start_in_command_mode": true,
"vintageous_reset_mode_when_switching_tabs": false,
"vintageous_use_ctrl_keys": false,
"vintageous_use_super_keys": false,
"word_wrap": false,
"wrap_width": 80,
}

View File

@@ -0,0 +1,32 @@
<snippet>
<content><![CDATA[
\documentclass[11pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage[ngerman, english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{microtype}
\usepackage[binary-units = true]{siunitx}
\usepackage[version=4]{mhchem}
\usepackage[left=2.50cm, right=2.50cm, top=2.00cm, bottom=2.00cm]{geometry}
%\usepackage{todonotes}
\usepackage{float}
\usepackage[backend=bibtex8,autocite = superscript, citestyle=numeric-comp,sorting=none]{biblatex}
%\addbibresource{library.bib}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\author{Daniel Bauer}
\title{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
${1:text}
\end{document}
]]></content>
<tabTrigger>latextemplate</tabTrigger>
<scope>text.tex.latex</scope>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[
#!/usr/bin/env ${1:exec}
]]></content>
<tabTrigger>shebang</tabTrigger>
</snippet>

File diff suppressed because it is too large Load Diff