More latex stuff

This commit is contained in:
elkowar 2022-01-21 10:45:37 +01:00
parent a06faa9507
commit b5cab2b19f
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
4 changed files with 80 additions and 56 deletions

View file

@ -4,12 +4,11 @@
lsp lspconfig
lsp-configs lspconfig/configs
utils dots.utils
ltex-ls dots.plugins.ltex-ls
cmp_nvim_lsp cmp_nvim_lsp}
require-macros [macros]})
(require dots.plugins.ltex-ls)
; TODO check https://github.com/neovim/nvim-lspconfig/blob/master/ADVANCED_README.md for default config for all of them
(tset vim.lsp.handlers :textDocument/publishDiagnostics
@ -81,6 +80,7 @@
(init-lsp :powershell_es {:bundle_path "/home/leon/powershell"})
(ltex-ls.init)

View file

@ -8,9 +8,23 @@
cmp_nvim_lsp cmp_nvim_lsp}})
(local Dictionary-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/dictionary.txt")]})
(local Disabled-rules-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/disable.txt")]})
(local False-positives-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/false.txt")]})
(def latex-command-settings
{:dummy ["\\texttt{}"]})
(def Dictionary-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/dictionary.txt")]})
(def Disabled-rules-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/disable.txt")]})
(def False-positives-file {:de-DE [(.. (vim.fn.getenv "HOME") "/.config/ltex-ls/false.txt")]})
(def latex-command-settings-formatted
(let [tbl {}]
(each [option commands (pairs latex-command-settings)]
(each [_ command (ipairs commands)]
(tset tbl command option))))
(tbl))
(fn read-files [files]
(let [dict {}]
@ -87,7 +101,9 @@
(lua "return nil")))
(add-to-file filetype lang file value)))
(set configs.ltex
(defn init []
(set configs.ltex
{:default_config {:cmd [:ltex-ls]
:filetypes [:tex :bib :md]
:root_dir (fn [filename] (lsputil.path.dirname filename))
@ -100,9 +116,10 @@
:motherTongue "de-DE"}
:dictionary {:de-DE (read-files (. Dictionary-file :de-DE))}
:disabledRules {:de-DE (read-files (. Disabled-rules-file :de-DE))}
:hiddenFalsePositives {:de-DE (read-files (. False-positives-file :de-DE))}}}}})
:hiddenFalsePositives {:de-DE (read-files (. False-positives-file :de-DE))}
:latex {:commands latex-command-settings-formatted}}}}})
(lsp.ltex.setup {:settings {:ltex {:enabled [:latex :tex :bib :md]
(lsp.ltex.setup {:settings {:ltex {:enabled [:latex :tex :bib :md]
:language "de-DE"
:checkFrequency "save"
:diagnosticSeverity "information"
@ -113,12 +130,12 @@
:disabledRules {:de-DE (read-files (. Disabled-rules-file :de-DE))}
:hiddenFalsePositives {:de-DE (read-files (. False-positives-file :de-DE))}}}})
(set lsp.ltex.dictionary_file Dictionary-file)
(set lsp.ltex.disabledrules_file Disabled-rules-file)
(set lsp.ltex.falsepostivies_file False-positives-file)
(local orig-execute-command vim.lsp.buf.execute_command)
(set lsp.ltex.dictionary_file Dictionary-file)
(set lsp.ltex.disabledrules_file Disabled-rules-file)
(set lsp.ltex.falsepostivies_file False-positives-file)
(local orig-execute-command vim.lsp.buf.execute_command)
(set vim.lsp.buf.execute_command
(set vim.lsp.buf.execute_command
(fn [command]
(if (= command.command :_ltex.addToDictionary)
(let [arg (. (. command.arguments 1) :words)]
@ -138,4 +155,4 @@
(each [_ rule (ipairs rules)]
(local filetype :falsePositive)
(add-to filetype lang (find-ltex-files filetype lang) rule))))
(orig-execute-command command))))
(orig-execute-command command)))))

View file

@ -6,6 +6,7 @@
(set vim.g.vimtex_view_method "general")
;(set vim.g.vimtex_view_general_viewer "okular")
(set vim.g.vimtex_view_general_viewer "zathura")
(set vim.g.vimtex_view_general_options "--synctex-forward @line:1:@tex @pdf")
;(set vim.g.vimtex_view_general_options "--unique file:@pdf#src:@line@tex")
(set vim.g.vimtex_quickfix_method "pplatex")
(set vim.g.vimtex_quickfix_mode 2)

View file

@ -1,4 +1,4 @@
set default-bg "#282828"
set default-bg "#1d2021"
set recolor true
set recolor-lightcolor "#282828"
set recolor-darkcolor "#ebdbb2"
@ -7,3 +7,9 @@ set inputbar-bg "#1d2021"
set inputbar-fg "#ebdbb2"
set statusbar-bg "#1d2021"
set statusbar-fg "#ebdbb2"
set synctex true
set synctex-editor-command "nvim --headless -c \"VimtexInverseSearch %{line} '%{input}'\""
set highlight-transparency 0