mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
Minor updates
This commit is contained in:
parent
6ca87e53a2
commit
dd6cd38562
@ -78,8 +78,6 @@ end
|
||||
-- Python
|
||||
dap.adapters.python = {
|
||||
type = "executable",
|
||||
-- command = vim.fn.stdpath("data") .. "/mason/packages/debugpy/venv/bin/python",
|
||||
-- args = { "-m", "debugpy.adapter" },
|
||||
command = vim.fn.stdpath("data") .. "/mason/bin/debugpy-adapter",
|
||||
}
|
||||
dap.configurations.python = {
|
||||
|
||||
@ -65,7 +65,6 @@ return packer.startup(function(use)
|
||||
-- Colorschemes
|
||||
use("lunarvim/darkplus.nvim")
|
||||
use("Mofiqul/dracula.nvim")
|
||||
use("elkowar/yuck.vim")
|
||||
|
||||
-- Vimwiki
|
||||
use("vimwiki/vimwiki")
|
||||
@ -86,12 +85,10 @@ return packer.startup(function(use)
|
||||
use("williamboman/mason.nvim")
|
||||
use("williamboman/mason-lspconfig.nvim")
|
||||
use("neovim/nvim-lspconfig") -- enable LSP
|
||||
use("WhoIsSethDaniel/mason-tool-installer.nvim")
|
||||
use("jose-elias-alvarez/null-ls.nvim") -- for formatters and linters
|
||||
use("jayp0521/mason-null-ls.nvim")
|
||||
use("RubixDev/mason-update-all")
|
||||
use("RRethy/vim-illuminate")
|
||||
use({ "Saecki/crates.nvim", tag = "v0.3.0" })
|
||||
use("Saecki/crates.nvim")
|
||||
use("simrat39/rust-tools.nvim")
|
||||
use("p00f/clangd_extensions.nvim")
|
||||
|
||||
|
||||
@ -3,12 +3,10 @@ if not status_ok then
|
||||
return
|
||||
end
|
||||
project.setup({
|
||||
|
||||
-- detection_methods = { "lsp", "pattern" }, -- NOTE: lsp detection will get annoying with multiple langs in one project
|
||||
detection_methods = { "pattern" },
|
||||
|
||||
-- patterns used to detect root dir, when **"pattern"** is in detection_methods
|
||||
patterns = { ".git", "Makefile", "package.json" },
|
||||
patterns = { ".git", "Makefile", "package.json", ".venv" },
|
||||
})
|
||||
|
||||
local tele_status_ok, telescope = pcall(require, "telescope")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user