diff options
| author | Robert Günzler <r@gnzler.io> | 2022-06-19 23:28:58 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-08-02 22:13:49 +0200 |
| commit | ca1bfeaab7613c210f31775d0636cfcd7caa694c (patch) | |
| tree | 7fc3ff5c6726c818096cef1aa7b878c276ae0898 /.vim/lua/plugins.lua | |
| parent | 423c0e186dbc5c2fa3406cd4f1377f0138d0f54c (diff) | |
vim: move colorscheme to plugin
Diffstat (limited to '.vim/lua/plugins.lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index 2a2643c..c451a30 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -1183,9 +1183,8 @@ require('packer').startup({function() } end} -- }}} - use {'rktjmp/lush.nvim'} + -- TODO: experimental section - -- TODO(robert): look into this more use {'tjdevries/sg.nvim', disable = true, -- {{{ requires = {'nvim-lua/plenary.nvim'}, config = function() @@ -1212,6 +1211,10 @@ require('packer').startup({function() vim.g.himalaya_mailbox_picker = 'telescope' vim.g.himalaya_telescope_preview_enabled = true end} -- }}} + + use {'https://git.sr.ht/~robertgzr/karafuru', rtp = 'vim', + config = function() vim.cmd [[colorscheme karafuru]] end} + end, config = { compile_path = compilepath, |