This commit is contained in:
Norm Rasmussen
2022-08-11 13:20:10 -04:00
parent cb9f7d2b8b
commit ff849733a2
6 changed files with 36 additions and 91 deletions

View File

@ -10,21 +10,29 @@ return require'packer'.startup(function()
-- Nvim Tree File Manager on the Left
use 'kyazdani42/nvim-tree.lua'
use({
'jakewvincent/mkdnflow.nvim',
config = function()
require('mkdnflow').setup({
mappings = {
MkdnToggleToDo = {{'n', 'v'}, '<C-Space>'},
MkdnNewListItem = {{'n','v'}, '<C-l>'},
MkdnNextLink = false,
MkdnPrevLink = false,
MkdnTableNextCell = false,
mappings = {
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'},
MkdnNewListItem = {{'i'}, '<CR>'},
MkdnEnter = {{'n'}, '<CR>'},
MkdnTableNextCell = false,
MkdnTab = {{'i',}, '<Tab>'},
MkdnSTab = {{'i'}, '<S-Tab>'},
}
})
end
})
-- mappings = {
-- MkdnEnter = {{'i', 'n', 'v'}, '<CR>'},
-- MkdnToggleToDo = {{'i', 'n', 'v'}, '<C-Space>'},
-- MkdnNewListItem = {{'n','v'}, '<C-l>'},
-- MkdnNextLink = false,
-- MkdnPrevLink = false,
-- MkdnTableNextCell = false,
-- }
-- Headlines Extension
use 'lukas-reineke/headlines.nvim'
@ -139,7 +147,7 @@ return require'packer'.startup(function()
require('nvim-autopairs').setup()
end
}
use {
--[[ use {
'hrsh7th/nvim-cmp',
requires = {
'L3MON4D3/LuaSnip',
@ -158,7 +166,7 @@ return require'packer'.startup(function()
'tzachar/cmp-tabnine',
run = './install.sh',
requires = 'hrsh7th/nvim-cmp'
}
}]]--
use 'chentoast/marks.nvim'
end)