diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-01-26 23:16:14 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-01-26 23:16:14 +0200 |
| commit | c3141cd6756fd40692a79f7ef49223a66f993a4e (patch) | |
| tree | 2c2cb24c1e1be30b6300b7128367d28772cb2c8b /lua/user/pack.lua | |
| parent | dac9bf1c1349e36b1505ec76cc9a27483260c6be (diff) | |
| download | dotfiles-c3141cd6756fd40692a79f7ef49223a66f993a4e.tar.gz dotfiles-c3141cd6756fd40692a79f7ef49223a66f993a4e.zip | |
Squashed '.config/nvim/' changes from e18107b..ba871ed
ba871ed Add alternative mappings for jumping to next match on line and repeating last command | Navigator plugin keymappings
4f37016 Replaced christoomey/vim-tmux-navigator with numToStr/Navigator.nvim
1c7b41c Update setup requirement
git-subtree-dir: .config/nvim
git-subtree-split: ba871ed0db168f3f398fc835a6e0bfb8a604c83a
Diffstat (limited to 'lua/user/pack.lua')
| -rw-r--r-- | lua/user/pack.lua | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/lua/user/pack.lua b/lua/user/pack.lua index e2d1cb1..43b7a36 100644 --- a/lua/user/pack.lua +++ b/lua/user/pack.lua @@ -44,7 +44,7 @@ return packer.startup(function(use) use("wbthomason/packer.nvim") -- Have packer manage itself use("lewis6991/impatient.nvim") - use("nvim-lua/plenary.nvim") -- Useful lua functions used ny lots of plugins + use("nvim-lua/plenary.nvim") -- Useful lua functions used by lots of plugins --use("jose-elias-alvarez/null-ls.nvim") -- lsp @@ -329,7 +329,7 @@ return packer.startup(function(use) -- Utilities use("nathom/filetype.nvim") - use("christoomey/vim-tmux-navigator") + --use("christoomey/vim-tmux-navigator") use("preservim/vimux") use("myusuf3/numbers.vim") use("windwp/nvim-autopairs") @@ -368,6 +368,21 @@ return packer.startup(function(use) --use("rmagatti/session-lens") --use("ahmedkhalf/project.nvim") --use("aserowy/tmux.nvim") + --use({ + -- "aserowy/tmux.nvim", + -- config = function() return require("tmux").setup() { + -- copy_sync = { + -- enable = false, + -- }, + -- } + -- end, + --}) + use({ + 'numToStr/Navigator.nvim', + config = function() + require('Navigator').setup() + end, + }) --use("wakatime/vim-wakatime") --use("tpope/vim-eunuch") -- Handy unix command inside Vim (Rename, Move etc.) |
