Skip to content

muryp/nvim-muryp-telescope-bookmark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Language : English | Indonesia

License: Apache Neovim version Lua version Repo Size Downloads Latest Release Last Commit Open Issues

nvim-muryp-telescope-bookmark

nvim-muryp-telescope-bookmark is a plugin for the Neovim text editor that allows users to search for folders or files that have been bookmarked previously, with the help of the Telescope plugin. This plugin enables users to save a list of bookmarked folders or files that are frequently used, and then perform quick and efficient searches using the Telescope search feature.

Instalasi

Use Packer

Add the following line to your Packer configuration:

use { 'muryp/nvim-muryp-telescope-bookmark', after=    'nvim-telescope/telescope.nvim' }

Setup

After installing the plugin, you need to do some configuration in your Neovim. Here is an example configuration:

local plug      = require('telescope.builtin')
local workspace = require('muryp-bookmark')
workspace.setup({
  list = {
    muryp = "~/web/muryp",
    vim = "~/.config/nvim",
  },
  option = {
    treeOpen = 'lua _G.TreeOpenNow()',
    telescope = 'Telescope find_files'
  }
})
plug.work_space = workspace.picker

Penggunaan

After configuring, you can use the nvim-muryp-telescope-bookmark plugin as follows:

  • Type :Telescope workspace in the command prompt in Neovim, then press enter.
  • Choose or search for the folder or file you want to open.
  • Press enter to proceed.
  • Press ctrl-back to go back in insert mode, or back in normal mode.
  • Finally, choose the command to execute and enter.

Lisensi

The nvim-muryp-git plugin is distributed under the Apache License 2.0. Please refer to the LICENSE file for more information about this license.

Contributing

We greatly appreciate contributions from anyone can produce issue or maintaine code to help this repo. Please read CONTRIBUTE.md for more info.