From de95ea87833f04611329339c80d723bde696093f Mon Sep 17 00:00:00 2001 From: sefidel Date: Fri, 11 Mar 2022 07:49:36 +0900 Subject: feat(macro/event): use lua API * fixes #5 * datwaft/nvim.conf 1067340 --- fnl/nvrc/events.fnl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'fnl/nvrc/events.fnl') diff --git a/fnl/nvrc/events.fnl b/fnl/nvrc/events.fnl index c5b4d8e..545294d 100644 --- a/fnl/nvrc/events.fnl +++ b/fnl/nvrc/events.fnl @@ -11,11 +11,11 @@ ; Restore cursor style to beam on exit (ag! restore-cursor - (au! VimLeave * #(set! guicursor ["a:ver75-blinkon0"]))) + (au! VimLeave * (set! guicursor ["a:ver75-blinkon0"]))) ; Restore the last cursor line (ag! restore-last-cursor-line - (au! BufReadPost * #(if (and (> (line "'\"") 1) + (au! BufReadPost * (if (and (> (line "'\"") 1) (<= (line "'\"") (line "$"))) (cmd! "normal! g'\"")))) @@ -26,22 +26,22 @@ ;; Read file when it changes on disk (ag! read-file-on-disk-change (au! [FocusGained BufEnter CursorHold CursorHoldI] * - #(if (and (not= :c (mode)) + (if (and (not= :c (mode)) (not (bufexists? "[Command Line]"))) (cmd! "checktime"))) (au! FileChangedShellPost * - #(echo! "File changed on disk. Buffer reloaded."))) + (echo! "File changed on disk. Buffer reloaded."))) (ag! terminal-options ;; Enter Terminal-mode (insert) agtomatically (au! TermOpen * "startinsert") ;; Disables line number on terminal buffers - (au! TermOpen * #(do + (au! TermOpen * (do (setl! nonumber) (setl! norelativenumber))) ;; Disables spell on terminal buffers - (au! TermOpen * #(setl! nospell)) + (au! TermOpen * (setl! nospell)) ;; Disables sign column on terminal buffers - (au! TermOpen * #(setl! signcolumn :no)) + (au! TermOpen * (setl! signcolumn :no)) ;; Disables colorcolumn on terminal buffers - (au! TermOpen * #(setl! colorcolumn []))) + (au! TermOpen * (setl! colorcolumn []))) -- cgit 1.4.1