return { { "euclio/vim-markdown-composer", build = "cargo build --release", enabled = function() return vim.fn.executable("cargo") end, }, { 'SCJangra/table-nvim', ft = 'markdown', opts = { mappings = { next = '', -- Go to next cell. prev = '', -- Go to previous cell. insert_row_up = 'k', -- Insert a row above the current row. insert_row_down = 'j', -- Insert a row below the current row. move_row_up = 'K', -- Move the current row up. move_row_down = 'J', -- Move the current row down. insert_column_left = 'h', -- Insert a column to the left of current column. insert_column_right = 'l', -- Insert a column to the right of current column. move_column_left = 'H', -- Move the current column to the left. move_column_right = 'L', -- Move the current column to the right. insert_table = 't', -- Insert a new table. insert_table_alt = 'T', -- Insert a new table that is not surrounded by pipes. delete_column = 'd', -- Delete the column under cursor. } }, } }