diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-06-09 08:18:36 +0200 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-06-09 08:18:36 +0200 |
commit | d5377880fa767bff124ffe2d5d6530f4d554a0fe (patch) | |
tree | 70b8e2afc534729366380d686ddcf2b783d8128f /Common/nvim/lua/plugins.lua | |
parent | bb5818068337cc3e5f985123e61030298469368b (diff) | |
download | dotfiles-d5377880fa767bff124ffe2d5d6530f4d554a0fe.tar.gz dotfiles-d5377880fa767bff124ffe2d5d6530f4d554a0fe.zip |
Add small configs
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 3077560..26f217f 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -80,6 +80,7 @@ return require('packer').startup(function(use) ]] map("n", ";", ":Files<cr>", silentnoremap) map("n", "<leader>;", ":Rg<cr>", silentnoremap) + map("n", "<leader><leader>;", ":BLines<cr>", silentnoremap) end, } @@ -168,6 +169,13 @@ return require('packer').startup(function(use) } use { 'smithbm2316/centerpad.nvim' } + -- Color preview + use { + 'lilydjwg/colorizer', + config = function() + end, + } + -- packer.nvim -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins |