1
0
Fork 0

nvim: Use indexed vim.cmd

This commit is contained in:
Daniel Kempkens 2022-07-27 11:04:23 +02:00
parent fe62fa9731
commit 292434b558
2 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
(let [o vim.opt
g vim.g]
;; Preamble
(vim.cmd "filetype plugin indent on")
(vim.cmd.filetype "plugin indent on")
(set o.shell :/bin/sh)
;; Various Options
(set o.spelllang [:en :de])

View file

@ -1,5 +1,5 @@
(let [mod {}
cmd vim.cmd
sign vim.cmd.sign
api vim.api
keymap (require :nifoc.keymap)
augroup (vim.api.nvim_create_augroup :NifocDiagnostic {:clear true})
@ -15,10 +15,10 @@
:float {:border :rounded :source true}
:update_in_insert false
:severity_sort true})
(cmd "sign define DiagnosticSignError text= texthl=DiagnosticSignError linehl= numhl=DiagnosticSignError")
(cmd "sign define DiagnosticSignWarn text= texthl=DiagnosticSignWarn linehl= numhl=DiagnosticSignWarn")
(cmd "sign define DiagnosticSignInfo text= texthl=DiagnosticSignInfo linehl= numhl=DiagnosticSignInfo")
(cmd "sign define DiagnosticSignHint text= texthl=DiagnosticSignHint linehl= numhl=DiagnosticSignHint"))
(sign "define DiagnosticSignError text= texthl=DiagnosticSignError linehl= numhl=DiagnosticSignError")
(sign "define DiagnosticSignWarn text= texthl=DiagnosticSignWarn linehl= numhl=DiagnosticSignWarn")
(sign "define DiagnosticSignInfo text= texthl=DiagnosticSignInfo linehl= numhl=DiagnosticSignInfo")
(sign "define DiagnosticSignHint text= texthl=DiagnosticSignHint linehl= numhl=DiagnosticSignHint"))
(fn mod.maybe-enable-diagnostics [bufnr]
(when (= vim.b.nifoc_diagnostics_enabled nil)