diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-04-22 21:47:31 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-04-22 21:47:31 +0200 |
| commit | 5054e04cfefeeaa1b2313173f5fcff3f709f1b01 (patch) | |
| tree | 9d41cdcac6d6b78912d52d4c264700bc146a5d30 | |
| parent | b91bb045f335eb2e15bebc5fa108e5893b5d9951 (diff) | |
fixup
| -rw-r--r-- | compiler/ansible-lint.vim | 2 | ||||
| -rw-r--r-- | fnl/conf/init.fnl | 1 | ||||
| -rw-r--r-- | fnl/conf/pkgs/heirline.fnl | 9 | ||||
| -rw-r--r-- | fnl/conf/pkgs/lspconfig.fnl | 1 |
4 files changed, 12 insertions, 1 deletions
diff --git a/compiler/ansible-lint.vim b/compiler/ansible-lint.vim index f1f4139..9427092 100644 --- a/compiler/ansible-lint.vim +++ b/compiler/ansible-lint.vim @@ -7,5 +7,5 @@ if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif -CompilerSet makeprg=ansible-lint +CompilerSet makeprg=compile\ ansible-lint CompilerSet errorformat=%Z%f:%l\ %m,%Z%f:%l,%E%\\%%(%\\S%\\)%\\@=%m,%C%\\%%(%\\S%\\)%\\@=%m,%-G diff --git a/fnl/conf/init.fnl b/fnl/conf/init.fnl index 6309919..28247f1 100644 --- a/fnl/conf/init.fnl +++ b/fnl/conf/init.fnl @@ -2,6 +2,7 @@ (vim.cmd "filetype plugin on") (vim.cmd "filetype indent on") (vim.cmd "highlight WinSeparator guibg=None") +(vim.cmd "packadd cfilter") (require :conf.settings) (require :conf.pkgs) diff --git a/fnl/conf/pkgs/heirline.fnl b/fnl/conf/pkgs/heirline.fnl index f155031..8ad8820 100644 --- a/fnl/conf/pkgs/heirline.fnl +++ b/fnl/conf/pkgs/heirline.fnl @@ -93,6 +93,13 @@ (.. "" purity "(" name ")")) :hl {:fg (theme :syn :fun) :bold true :bg (theme :ui :bg_m3)}}) +(local RecordingMacro {:condition #(not= "" (vim.fn.reg_recording)) + :provider (fn [self] + (.. "Recording... " (vim.fn.reg_recording))) + :hl {:fg (theme :syn :fun) + :bold true + :bg (theme :ui :bg_m3)}}) + (local harpoon (require :harpoon)) (local harpoon-mark (require :harpoon.mark)) (local harpoon-colors [(theme :syn :identifier) @@ -198,6 +205,8 @@ Space TabPages DAPMessages + Space + RecordingMacro Align Space Nix diff --git a/fnl/conf/pkgs/lspconfig.fnl b/fnl/conf/pkgs/lspconfig.fnl index 8d01061..accd001 100644 --- a/fnl/conf/pkgs/lspconfig.fnl +++ b/fnl/conf/pkgs/lspconfig.fnl @@ -33,6 +33,7 @@ :python {:interpreterPath :python} :validation {:enabled true :lint {:enabled false + :arguments " --profile=production --write=all " :path :ansible-lint}}}}) ;; (tset configs :fennel_language_server |
