fix(nvim) wrong plugin names

This commit is contained in:
TheK4n 2023-01-15 20:29:31 +03:00
parent c643e6fc28
commit 68e0356db9
5 changed files with 4 additions and 6 deletions

View File

@ -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()

View File

@ -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 {

View File

@ -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

View File

@ -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

View File

@ -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 }