- commit
- a530a08
- parent
- c04531c
- author
- Eric Bower
- date
- 2025-09-24 22:51:50 -0400 EDT
chore(nvim): changes
1 files changed,
+3,
-6
+3,
-6
1@@ -38,9 +38,6 @@ o.grepprg = "rg --vimgrep --smart-case --hidden"
2 o.grepformat = "%f:%l:%c:%m"
3 vim.g.mapleader = ","
4 vim.g.maplocalleader = ","
5-vim.diagnostic.config({
6- severity_sort = true,
7-})
8
9 local opts = { silent = true }
10 local map = vim.keymap.set
11@@ -204,9 +201,9 @@ end, { nargs = "+", desc = "convert command to quickfix" })
12 local function cqf_fmt(line)
13 local path, rest = line:match("(%S+)%s*(.*)")
14 if path then
15- if #rest == 0 then
16- rest = path
17- end
18+ if #rest == 0 then
19+ rest = path
20+ end
21 return string.format("%s:1:1:%s", path, rest)
22 end
23 return ""