mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 05:02:10 +00:00
fix canola
This commit is contained in:
parent
48ef78fd13
commit
c882f44a0b
3 changed files with 8 additions and 4 deletions
|
|
@ -1,9 +1,12 @@
|
|||
vim.pack.add({
|
||||
"https://github.com/barrettruth/canola.nvim",
|
||||
{
|
||||
src = "https://github.com/barrettruth/canola.nvim",
|
||||
version = "canola",
|
||||
},
|
||||
"https://github.com/barrettruth/canola-collection",
|
||||
}, { load = function() end })
|
||||
|
||||
local canola_config = require("config.canola")
|
||||
local canola_config = require "config.canola"
|
||||
|
||||
return {
|
||||
{
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
},
|
||||
"canola.nvim": {
|
||||
"rev": "4a0dd41ca39793342177b2cdb8e784243da5a936",
|
||||
"src": "https://github.com/barrettruth/canola.nvim"
|
||||
"src": "https://github.com/barrettruth/canola.nvim",
|
||||
"version": "'canola'"
|
||||
},
|
||||
"cozybox.nvim": {
|
||||
"rev": "be246810d74e3030cc5790685db3b9b8aacda5e3",
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ in
|
|||
state_dir="${config.xdg.stateHome}/nvim"
|
||||
lockfile="${packLockPath}"
|
||||
|
||||
if [ ! -e "$lockfile" ]; then
|
||||
if [ ! -e "$lockfile" ] || ! cmp -s ${packLockSeed} "$lockfile"; then
|
||||
mkdir -p "$state_dir"
|
||||
cp ${packLockSeed} "$lockfile"
|
||||
chmod u+w "$lockfile"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue