diff options
-rw-r--r-- | dictionary.txt | 23 | ||||
-rw-r--r-- | store/home/config/nvim/.luarc.json | 4 | ||||
-rw-r--r-- | store/home/config/nvim/cspell.yaml | 13 | ||||
-rw-r--r-- | store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua | 9 | ||||
-rw-r--r-- | store/home/config/nvim/nvim-words.txt | 27 |
5 files changed, 28 insertions, 48 deletions
diff --git a/dictionary.txt b/dictionary.txt index 59b382f..7688382 100644 --- a/dictionary.txt +++ b/dictionary.txt @@ -1,6 +1,7 @@ # me crupest -yuqian +Yuqian +Yang # self-hosted services 2fauth @@ -11,6 +12,8 @@ roundcubemail gohugoio # general +catppuccin +macchiato cheatsheet aarch64 pythonpath @@ -19,6 +22,24 @@ esmtp tini healthcheck +# vim/nvim +nvim +neovide +vimruntime + +autobrief +autopairs +bashls +bufhidden +bufnr +clangd +devicons +exepath +gitsigns +lspconfig +lualine +luasnip + # unix cpio kmod diff --git a/store/home/config/nvim/.luarc.json b/store/home/config/nvim/.luarc.json deleted file mode 100644 index f704d01..0000000 --- a/store/home/config/nvim/.luarc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", - "runtime.version": "LuaJIT" -}
\ No newline at end of file diff --git a/store/home/config/nvim/cspell.yaml b/store/home/config/nvim/cspell.yaml deleted file mode 100644 index 2a716e2..0000000 --- a/store/home/config/nvim/cspell.yaml +++ /dev/null @@ -1,13 +0,0 @@ -dictionaryDefinitions: - - name: nvim-words - path: './nvim-words.txt' - addWords: true - -dictionaries: - - nvim-words - -words: - - crupest - -ignorePaths: - - lazy-lock.json diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua index e9ea369..e2dff1b 100644 --- a/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua +++ b/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua @@ -30,7 +30,7 @@ local function cru_lint(linter, opt) opt.buf = 0 end - if 0 ~= vim.fs.find(linter.config_patterns, { + if 0 ~= #vim.fs.find(linter.config_patterns, { path = vim.api.nvim_buf_get_name(opt.buf), upward = true }) then if not linter.initialized then vim.diagnostic.config({ virtual_text = true }, lint.get_namespace(linter.name)) @@ -59,11 +59,14 @@ local function cru_lint_all(opt, fast) end local function cru_lint_all_fast(opt) - cru_lint_all(opt, true) + local buf = opt.buf + if vim.api.nvim_get_option_value("buftype", { buf = buf }) == "" then + cru_lint_all(opt, true) + end end local function setup() - vim.api.nvim_create_autocmd({ "InsertLeave", "TextChanged" }, { callback = cru_lint_all_fast }) + vim.api.nvim_create_autocmd({ "BufReadPost", "InsertLeave", "TextChanged" }, { callback = cru_lint_all_fast }) local function cru_lint_cmd(opt) if #opt.args == 0 then diff --git a/store/home/config/nvim/nvim-words.txt b/store/home/config/nvim/nvim-words.txt deleted file mode 100644 index 564904f..0000000 --- a/store/home/config/nvim/nvim-words.txt +++ /dev/null @@ -1,27 +0,0 @@ -nvim -vimruntime -bnext -bufhidden -exepath -stdpath -augroup -autocmd -autobrief -autopairs -keymap -joinpath -bufnr - -neovide -pixiedust - -lspconfig -clangd -bashls - -catppuccin -macchiato -diffthis -gitsigns -lualine -luasnip |