Daniel Jenson
Daniel Jenson
Yes, they are in the vscode format
Yes, previously I used: ```lua ["L3MON4D3/LuaSnip"] = { config = function() require("luasnip").config.set_config({ history = true, updateevents = "TextChanged,TextChangedI", }) require("luasnip/loaders/from_vscode").lazy_load() require("luasnip/loaders/from_vscode").lazy_load({ paths = "~/.config/snippets" }) end, }, ```
`echo g:luasnippets_path` yields `~/.config/snippets`, and here is my custom `init.lua` and `plugins/init.lua` `init.lua`: ```lua -- REMEMBER TO RUN :PackerSync or :PackerCompile after editing -- global options vim.g.mapleader = ";" vim.g.luasnippets_path...
`package.json` ```json { "name": "custom-snippets", "contributes": { "snippets": [ { "language": [ "tex", "plaintex", "markdown" ], "path": "tex-math.json" }, { "language": [ "tex", "plaintex", "markdown" ], "path": "tex-stat.json" }, {...
Closing, it was due to an errant comma in the luasnips `tex-math.json`
Second this, it would be great because I often write latex in markdown with mathjax
Are there any plans to fix this? I use bspwm and love this, but it gets quite annoying for zoom / watching videos to have my bars not going into...
Sadly, I'm not sure. But thank you for all the great work! In the interim, here is my hack for bspwm ```bash bspc subscribe node_state | while read -r _...
 I'm getting 401s but the networkError object doesn't resemble any of those in the documentation: https://www.apollographql.com/docs/link/links/http/#errors. I'm using apollo-link-error 1.1.12.
Hm, this doesn't seem to be working; my coc-settings.json has: ``` { ... "python.formatting.provider": "yapf", "coc.preferences.formatOnSaveFiletypes": ["py"] ... } ``` And I still have to manually call :Format for it...