From 7b9a4fe2a28399bfcdea7858137cf05294ea1a3f Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 25 Feb 2022 09:09:40 -0800 Subject: [PATCH] Remove commented out plugins --- neovim/lua/plugins.lua | 45 ------------------------------------------ 1 file changed, 45 deletions(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index 6dcacde..ea37b38 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -250,12 +250,6 @@ return require("packer").startup({ "nvim-treesitter/nvim-treesitter-textobjects", requires = "nvim-treesitter/nvim-treesitter", }) - --[[ - use { - "nvim-treesitter/completion-treesitter", - requires = "nvim-treesitter/nvim-treesitter", - } - --]] -- Completion use({ @@ -290,45 +284,6 @@ return require("packer").startup({ require("plugins.telescope") end, }) - --[[ - use { - 'junegunn/fzf', - run = ":call fzf#install()", - } - use { - 'junegunn/fzf.vim', - requires = "junegunn/fzf", - config = function() - vim.g.fzf_command_prefix = 'FZF' - -- Jump to existing window if possible - vim.g.fzf_buffers_jump = 1 - -- Override key commands - -- vim.g.fzf_action = { ['ctrl-t'] = 'tab split', ['ctrl-s'] = 'split', ['ctrl-v'] = 'vsplit', } - -- Override git log to show authors - vim.g.fzf_commits_log_options = --graph --color=always \z - --format="%C(auto)%h %an: %s%d %C(black)%C(bold)%cr" - - vim.g.fzf_preview_window = {"right:50%", "ctrl-/"} - - vim.api.nvim_set_keymap("n", "", "FZF", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "b", "FZFBuffers", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "", "FZFBuffers", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "fg", "FZFRg", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "r", "FZFTags", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "t", "FZFBTags", {silent=true, noremap=true}) - vim.api.nvim_set_keymap("n", "g", "FZFBCommits", {silent=true, noremap=true}) - end, - } - use { - "ojroques/nvim-lspfuzzy", - requires = { "junegunn/fzf", "junegunn/fzf" }, - config = function() - require("lspfuzzy").setup{ - fzf_trim = false, - } - end, - } - --]] -- Filetypes use("ViViDboarder/vim-forcedotcom")