fix(nvim) wrong plugin names
This commit is contained in:
parent
c643e6fc28
commit
68e0356db9
@ -1,5 +1,5 @@
|
||||
|
||||
local status, nvim_autopairs = pcall(require, "nvim_autopairs")
|
||||
local status, nvim_autopairs = pcall(require, "nvim-autopairs")
|
||||
if (not status) then return end
|
||||
|
||||
nvim_autopairs.setup()
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
|
||||
local status, nvim_treesitter = pcall(require, "nvim_treesitter")
|
||||
local status, nvim_treesitter = pcall(require, "nvim-treesitter")
|
||||
if (not status) then return end
|
||||
|
||||
nvim_treesitter.setup {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
|
||||
local status, nvim_ts_autotag = pcall(require, "nvim_ts_autotag")
|
||||
local status, nvim_ts_autotag = pcall(require, "nvim-ts-autotag")
|
||||
if (not status) then return end
|
||||
|
||||
|
||||
|
||||
@ -72,7 +72,7 @@ keymap.set("n", '<Leader>fg', '<cmd>Telescope live_grep<CR>', {silent = true})
|
||||
|
||||
|
||||
-- Expand %% to dirname of current file in command line
|
||||
keymap.set("c", '%%', [[getcmdtype() == ':' ? expand('%:h').'/' : '%%']], {expr = true, silent = true})
|
||||
keymap.set("c", '%%', [[getcmdtype() == ':' ? expand('%:h').'/' : '%%']], {expr = true})
|
||||
|
||||
|
||||
-- Save from root
|
||||
|
||||
@ -2,8 +2,6 @@ return require('packer').startup(function(use)
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
use 'VundleVim/Vundle.vim'
|
||||
|
||||
use {
|
||||
'nvim-lualine/lualine.nvim',
|
||||
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user