-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding flalign to math environments. #884
Comments
@LuisA92 You can use the "texlab.experimental.mathEnvironments": ["flalign", "flalign*"] |
@pfoerster sorry for the noob question (first time configuring texlab), but where is the config file for texlab located? Do I need to create a new one? I was using texlab through nvim lspconfig, but I just downloaded texlab locally using |
@LuisA92 There is no config file, instead you need to pass the configuration to the server through the client (Neovim). In your case, it might look like this (actual syntax might be wrong as I don't use Neovim): lspconfig.texlab.setup {
settings = {
texlab = {
experimental = {
mathEnvironments = { 'flalign', 'flalign*' },
},
},
},
}
See here for more information. |
Thank you! This solved my issue. |
Hello,
Is there anyway to add
flalign
andflalign*
to the list of math environments?I mainly use texlab on neovim, and I cannot not figure out how to configure the math environment list.
Thanks!
The text was updated successfully, but these errors were encountered: