Unify quotes to single quote in neovim plugin configuration
This commit is contained in:
parent
b316f72cc4
commit
357392b9dc
1 changed files with 6 additions and 6 deletions
|
@ -115,7 +115,7 @@ require('packer').startup(function()
|
|||
'hrsh7th/nvim-cmp',
|
||||
requires = {
|
||||
{'hrsh7th/cmp-buffer'}, -- Buffer source
|
||||
{'petertriho/cmp-git', requires = "nvim-lua/plenary.nvim"}, -- Git source
|
||||
{'petertriho/cmp-git', requires = 'nvim-lua/plenary.nvim'}, -- Git source
|
||||
{'hrsh7th/cmp-nvim-lsp'}, -- LSP source
|
||||
{'hrsh7th/cmp-nvim-lua'}, -- Neovim Lua API documentation source
|
||||
{'hrsh7th/cmp-path'}, -- Path source
|
||||
|
@ -170,12 +170,12 @@ require('packer').startup(function()
|
|||
-- Vim <3 Asciidoctor
|
||||
use 'habamax/vim-asciidoctor'
|
||||
|
||||
-- Markdown preview plugin
|
||||
-- Markdown preview
|
||||
use({
|
||||
"iamcco/markdown-preview.nvim",
|
||||
run = "cd app && npm install",
|
||||
setup = function() vim.g.mkdp_filetypes = {"markdown"} end,
|
||||
ft = {"markdown"}
|
||||
'iamcco/markdown-preview.nvim',
|
||||
run = 'cd app && npm install',
|
||||
setup = function() vim.g.mkdp_filetypes = {'markdown'} end,
|
||||
ft = {'markdown'}
|
||||
})
|
||||
|
||||
-- Edit GPG encrypted files transparently
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue