• LaTeX Vim set up, Best way to take notes -...
Things to download
https://strawberryperl.com/
https://miktex.org/download
https://code.visualstudio.com/download
Extensions to get on VS Code:
LaTeX Workshop by James Yu
Prettier
Vim
Settings JSON code: Surround Esc with angled brackets
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["Esc"]
}
],
Keybindings JSON:
{
"key": "ctrl+o",
"command": "workbench.action.previousEditor",
"when": ""
},
// {
// "key": "tab",
// "command": "tab",
// "when": "editorTextFocus && !editorTabMovesFocus"
// },
{
"key": "shift+tab",
"command": "outdent",
"when": "editorTextFocus && !editorTabMovesFocus"
}
Snippets:
"BasicArticle": {
"scope": "latex",
"prefix": "barticle",
"body": [
"\\documentclass[a4 paper, 12pt]{article}",
"\\usepackage{array}",
"\\usepackage{gensymb}",
"\\usepackage{tikz, pgfplots, ${1:Extra packages} }",
"\\usetikzlibrary{shapes, arrows, positioning, plotmarks}",
" ",
"\\begin{document}",
"\\pagecolor[HTML]{dddddd}",
"${2:Start Doc here}",
"\\end{document}"
],
"description": "Packages for Graphs installed"
},