Code Monkey home page Code Monkey logo

Comments (4)

kikofmas avatar kikofmas commented on June 11, 2024 1

Hi @DanRoscigno, thank you for your reply! Unfortunately, it didn't have the exact functionality I wanted.
So I did create a fork to fix this and other issues I found. I managed to fix them, here's the link if you feel like checking it out: https://github.com/kikofmas/grammarous.nvim

The goal is to transition it to Lua as a way for me to learn both vim script and Lua.

from vim-grammarous.

DanRoscigno avatar DanRoscigno commented on June 11, 2024 1

Thanks @kikofmas , I may give it a try. Unfortunately my team uses VS Code, so I am trying to use that to be in sync with the rest of the team, so neovim does not get much use by me lately :(

from vim-grammarous.

kikofmas avatar kikofmas commented on June 11, 2024

I am encountering the same issue, did you manage to fix it?

from vim-grammarous.

DanRoscigno avatar DanRoscigno commented on June 11, 2024

Hi @kikofmas I didn't. I am now using this config:

-- configure ltex-ls
require 'ltex-ls'.setup {
  on_attach = on_attach,
  capabilities = capabilities,
  use_spellfile = false,
  filetypes = { "latex", "tex", "bib", "markdown", "gitcommit", "text" },
  settings = {
    ltex = {
      enabled = { "latex", "tex", "bib", "markdown", },
      language = "en",
      diagnosticSeverity = "information",
      sentenceCacheSize = 2000,
      additionalRules = {
        -- download ngrams from
        -- https://dev.languagetool.org/finding-errors-using-n-gram-data.html
        languageModel = '~/ngrams/',
        enablePickyRules = true,
        motherTongue = "en",
      },
      disabledRules = {
        en = { "EN_QUOTES" }
      },
      dictionary = (function()
        ---- For dictionary, search for files in the runtime to have
        ---- and include them as externals the format for them is
        ---- dict/{LANG}.txt
        ----
        ---- Also add dict/default.txt to all of them
        local files = {}
        for _, file in ipairs(vim.api.nvim_get_runtime_file("dict/*", true)) do
          local lang = vim.fn.fnamemodify(file, ":t:r")
          local fullpath = vim.fs.normalize(file, ":p")
          files[lang] = { ":" .. fullpath }
        end
--
        if files.default then
          for lang, _ in pairs(files) do
            if lang ~= "default" then
              vim.list_extend(files[lang], files.default)
            end
          end
          files.default = nil
        end
        return files
      end)(),
    },
  },
}

from vim-grammarous.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.