mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-02-12 06:18:59 +00:00
Update Neovim config to use alternative compiled path
This commit is contained in:
parent
9f5432e5a6
commit
94a0c303ab
@ -8,7 +8,11 @@ if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
|||||||
packer_bootstrap = vim.fn.system({"git", "clone", "https://github.com/wbthomason/packer.nvim", install_path})
|
packer_bootstrap = vim.fn.system({"git", "clone", "https://github.com/wbthomason/packer.nvim", install_path})
|
||||||
end
|
end
|
||||||
|
|
||||||
return require("packer").startup(function(use)
|
local packer = require("packer")
|
||||||
|
local util = require("packer.util")
|
||||||
|
|
||||||
|
return packer.startup({
|
||||||
|
function(use)
|
||||||
-- Let the package manager manage itself.
|
-- Let the package manager manage itself.
|
||||||
use { "wbthomason/packer.nvim" }
|
use { "wbthomason/packer.nvim" }
|
||||||
|
|
||||||
@ -48,12 +52,6 @@ return require("packer").startup(function(use)
|
|||||||
virt_text = { {"<- Current choice", "Comment"} },
|
virt_text = { {"<- Current choice", "Comment"} },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
[types.insertNode] = {
|
|
||||||
active = {
|
|
||||||
virt_text = { {"<>", "Comment"} },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -272,7 +270,13 @@ return require("packer").startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
if packer_bootstrap then
|
use { "https://gitlab.com/HiPhish/guile.vim.git" }
|
||||||
require("packer").sync()
|
use {
|
||||||
end
|
"eraserhd/parinfer-rust",
|
||||||
end)
|
run = "nix-shell --run 'cargo build --release'",
|
||||||
|
}
|
||||||
|
use { "Olical/conjure", }
|
||||||
|
end,
|
||||||
|
config = {
|
||||||
|
compile_path = util.join_paths(vim.fn.stdpath('data'), 'site', 'after', 'plugin', 'packer_compiled.lua'),
|
||||||
|
}})
|
||||||
|
Loading…
Reference in New Issue
Block a user