nvim: plugins: Drop marks, portal and vim-repeat/sleuth

This commit is contained in:
Sanchayan Maity 2024-12-16 21:27:36 +05:30
parent 5b39e641d2
commit 40fc22f5be
Signed by: sanchayanmaity
GPG key ID: 6F6A0609C12038F3
3 changed files with 0 additions and 24 deletions

View file

@ -1,14 +0,0 @@
local remap = vim.keymap.set
local opts = { noremap=true, silent=true, unique=true }
require'marks'.setup {
cyclic = true,
default_mappings = true,
builtin_marks = {},
}
remap('n', '<Leader>mt', ':MarksToggleSigns<CR>', opts)
remap('n', '<Leader>mb', ':MarksListBuf<CR>' , opts)
remap('n', '<Leader>mg', ':MarksListGlobal<CR>' , opts)
remap('n', '<Leader>ma', ':MarksListAll<CR>' , opts)
remap('n', '<Leader>mB', ':BookmarksListAll<CR>', opts)

View file

@ -1,5 +0,0 @@
vim.keymap.set("n", "<Leader>o", "<cmd>Portal jumplist backward<CR>")
vim.keymap.set("n", "<Leader>i", "<cmd>Portal jumplist forward<CR>" )
vim.keymap.set("n", "<LocalLeader>o", "<cmd>Portal changelist backward<CR>")
vim.keymap.set("n", "<LocalLeader>i", "<cmd>Portal changelist forward<CR>" )

View file

@ -18,9 +18,6 @@ require "paq" {
-- Async jobs
'nvim-lua/plenary.nvim' ,
'tpope/vim-dispatch' ,
-- Tim Pope goodies
'tpope/vim-repeat' ,
'tpope/vim-sleuth' ,
-- Treesitter
{
'nvim-treesitter/nvim-treesitter' ,
@ -32,8 +29,6 @@ require "paq" {
-- Miscellaneous
'windwp/nvim-autopairs' ,
'junegunn/vim-easy-align' ,
'chentoast/marks.nvim' ,
'christoomey/vim-tmux-navigator' ,
'cbochs/portal.nvim' ,
'polirritmico/monokai-nightasty.nvim'
}