Skip to content

Commit

Permalink
feat(project): added project
Browse files Browse the repository at this point in the history
  • Loading branch information
felicandalc committed May 26, 2022
1 parent 776fc07 commit 1283542
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ require "nn.nvim-tree"
require "nn.bufferline"
require "nn.lualine"
require "nn.toggleterm"
require "nn.project"
3 changes: 3 additions & 0 deletions lua/nn/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ return packer.startup(function(use)
-- Toggleterm
use "akinsho/toggleterm.nvim"

-- Project
use "ahmedkhalf/project.nvim"

-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins
if PACKER_BOOTSTRAP then
Expand Down
48 changes: 48 additions & 0 deletions lua/nn/project.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
local status_ok, project = pcall(require, "project_nvim")
if not status_ok then
return
end
project.setup({
---@usage set to false to disable project.nvim.
--- This is on by default since it's currently the expected behavior.
active = true,

on_config_done = nil,

---@usage set to true to disable setting the current-woriking directory
--- Manual mode doesn't automatically change your root directory, so you have
--- the option to manually do so using `:ProjectRoot` command.
manual_mode = false,

---@usage Methods of detecting the root directory
--- Allowed values: **"lsp"** uses the native neovim lsp
--- **"pattern"** uses vim-rooter like glob pattern matching. Here
--- order matters: if one is not detected, the other is used as fallback. You
--- can also delete or rearangne the detection methods.
-- detection_methods = { "lsp", "pattern" }, -- NOTE: lsp detection will get annoying with multiple langs in one project
detection_methods = { "pattern" },

---@usage patterns used to detect root dir, when **"pattern"** is in detection_methods
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },

---@ Show hidden files in telescope when searching for files in a project
show_hidden = false,

---@usage When set to false, you will get a message when project.nvim changes your directory.
-- When set to false, you will get a message when project.nvim changes your directory.
silent_chdir = true,

---@usage list of lsp client names to ignore when using **lsp** detection. eg: { "efm", ... }
ignore_lsp = {},

---@type string
---@usage path to store the project history for use in telescope
datapath = vim.fn.stdpath("data"),
})

local tele_status_ok, telescope = pcall(require, "telescope")
if not tele_status_ok then
return
end

telescope.load_extension('projects')
5 changes: 5 additions & 0 deletions plugin/packer_compiled.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ _G.packer_plugins = {
path = "/home/nn/.local/share/nvim/site/pack/packer/start/popup.nvim",
url = "https://github.com/nvim-lua/popup.nvim"
},
["project.nvim"] = {
loaded = true,
path = "/home/nn/.local/share/nvim/site/pack/packer/start/project.nvim",
url = "https://github.com/ahmedkhalf/project.nvim"
},
["telescope-media-files.nvim"] = {
loaded = true,
path = "/home/nn/.local/share/nvim/site/pack/packer/start/telescope-media-files.nvim",
Expand Down

0 comments on commit 1283542

Please sign in to comment.