nvim: remove telescope media_files

This commit is contained in:
tastytea 2022-08-17 19:57:20 +02:00
parent bb1319078c
commit 123879a15f
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
2 changed files with 3 additions and 12 deletions

View File

@ -80,14 +80,6 @@ require('packer').startup(function(use)
'https://github.com/nvim-treesitter/nvim-treesitter', 'https://github.com/nvim-treesitter/nvim-treesitter',
}, },
} }
use {
'https://github.com/nvim-telescope/telescope-media-files.nvim',
requires = {
'https://github.com/nvim-lua/popup.nvim',
'https://github.com/nvim-lua/plenary.nvim',
'https://github.com/nvim-telescope/telescope.nvim'
}
}
use { use {
'https://github.com/kyazdani42/nvim-tree.lua', 'https://github.com/kyazdani42/nvim-tree.lua',
tag = '*' tag = '*'

View File

@ -2,17 +2,16 @@ require('my/plugins')
local map = require('my.functions').map local map = require('my.functions').map
local telescope = require('telescope') local telescope = require('telescope')
local actions = require('telescope.actions') local t_actions = require('telescope.actions')
telescope.load_extension('media_files') -- FIXME: does not work
telescope.load_extension('projects') telescope.load_extension('projects')
require('telescope').setup { require('telescope').setup {
mappings = { mappings = {
i = { i = {
["<C-_>"] = actions.which_key, ["<C-_>"] = t_actions.which_key,
}, },
n = { n = {
["?"] = actions.which_key, ["?"] = t_actions.which_key,
} }
}, },
extensions = { extensions = {