nvim: remove telescope media_files
This commit is contained in:
parent
bb1319078c
commit
123879a15f
@ -80,14 +80,6 @@ require('packer').startup(function(use)
|
||||
'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 {
|
||||
'https://github.com/kyazdani42/nvim-tree.lua',
|
||||
tag = '*'
|
||||
|
@ -2,17 +2,16 @@ require('my/plugins')
|
||||
|
||||
local map = require('my.functions').map
|
||||
local telescope = require('telescope')
|
||||
local actions = require('telescope.actions')
|
||||
telescope.load_extension('media_files') -- FIXME: does not work
|
||||
local t_actions = require('telescope.actions')
|
||||
telescope.load_extension('projects')
|
||||
|
||||
require('telescope').setup {
|
||||
mappings = {
|
||||
i = {
|
||||
["<C-_>"] = actions.which_key,
|
||||
["<C-_>"] = t_actions.which_key,
|
||||
},
|
||||
n = {
|
||||
["?"] = actions.which_key,
|
||||
["?"] = t_actions.which_key,
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user