diff options
Diffstat (limited to 'lua/user')
-rw-r--r-- | lua/user/gpg.lua | 7 | ||||
-rw-r--r-- | lua/user/plugins.lua | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lua/user/gpg.lua b/lua/user/gpg.lua new file mode 100644 index 0000000..9639cf7 --- /dev/null +++ b/lua/user/gpg.lua @@ -0,0 +1,7 @@ +local status_ok, gnupg = pcall(require, "vim-gnupg") +if not status_ok then + print "vim-gnupg init failed" + return +end + +gnupg.setup { } diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 12d4e2a..dfe37e2 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -55,6 +55,7 @@ return packer.startup(function(use) -- use 'vim-airline/vim-airline-themes' -- Status/Tab line Themes use 'feline-nvim/feline.nvim' use 'embear/vim-localvimrc' -- support .lvimrc + use 'jamessan/vim-gnupg' -- support gpg -- Colorschemes -- use 'lunarvim/colorschemes' -- A bunch of colorschemes you can try out |