update deps
This commit is contained in:
parent
d1172c40fd
commit
c7d57f6935
5 changed files with 7 additions and 6 deletions
4
flake.lock
generated
4
flake.lock
generated
|
|
@ -719,7 +719,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nvim_plugin-ron/ron.vim": {
|
"nvim_plugin-ron-rs/ron.vim": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1660904719,
|
"lastModified": 1660904719,
|
||||||
|
|
@ -942,7 +942,7 @@
|
||||||
"nvim_plugin-rafamadriz/friendly-snippets": "nvim_plugin-rafamadriz/friendly-snippets",
|
"nvim_plugin-rafamadriz/friendly-snippets": "nvim_plugin-rafamadriz/friendly-snippets",
|
||||||
"nvim_plugin-rcarriga/nvim-notify": "nvim_plugin-rcarriga/nvim-notify",
|
"nvim_plugin-rcarriga/nvim-notify": "nvim_plugin-rcarriga/nvim-notify",
|
||||||
"nvim_plugin-rmagatti/auto-session": "nvim_plugin-rmagatti/auto-session",
|
"nvim_plugin-rmagatti/auto-session": "nvim_plugin-rmagatti/auto-session",
|
||||||
"nvim_plugin-ron/ron.vim": "nvim_plugin-ron/ron.vim",
|
"nvim_plugin-ron-rs/ron.vim": "nvim_plugin-ron-rs/ron.vim",
|
||||||
"nvim_plugin-saadparwaiz1/cmp_luasnip": "nvim_plugin-saadparwaiz1/cmp_luasnip",
|
"nvim_plugin-saadparwaiz1/cmp_luasnip": "nvim_plugin-saadparwaiz1/cmp_luasnip",
|
||||||
"nvim_plugin-sindrets/diffview.nvim": "nvim_plugin-sindrets/diffview.nvim",
|
"nvim_plugin-sindrets/diffview.nvim": "nvim_plugin-sindrets/diffview.nvim",
|
||||||
"nvim_plugin-stevearc/conform.nvim": "nvim_plugin-stevearc/conform.nvim",
|
"nvim_plugin-stevearc/conform.nvim": "nvim_plugin-stevearc/conform.nvim",
|
||||||
|
|
|
||||||
|
|
@ -124,8 +124,8 @@
|
||||||
"nvim_plugin-Saecki/crates.nvim".flake = false;
|
"nvim_plugin-Saecki/crates.nvim".flake = false;
|
||||||
"nvim_plugin-rafamadriz/friendly-snippets".url = "github:rafamadriz/friendly-snippets";
|
"nvim_plugin-rafamadriz/friendly-snippets".url = "github:rafamadriz/friendly-snippets";
|
||||||
"nvim_plugin-rafamadriz/friendly-snippets".flake = false;
|
"nvim_plugin-rafamadriz/friendly-snippets".flake = false;
|
||||||
"nvim_plugin-ron/ron.vim".url = "github:ron-rs/ron.vim";
|
"nvim_plugin-ron-rs/ron.vim".url = "github:ron-rs/ron.vim";
|
||||||
"nvim_plugin-ron/ron.vim".flake = false;
|
"nvim_plugin-ron-rs/ron.vim".flake = false;
|
||||||
"nvim_plugin-nosduco/remote-sshfs.nvim".url = "github:nosduco/remote-sshfs.nvim";
|
"nvim_plugin-nosduco/remote-sshfs.nvim".url = "github:nosduco/remote-sshfs.nvim";
|
||||||
"nvim_plugin-nosduco/remote-sshfs.nvim".flake = false;
|
"nvim_plugin-nosduco/remote-sshfs.nvim".flake = false;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
2
init.lua
2
init.lua
|
|
@ -18,7 +18,7 @@ require("keymaps")
|
||||||
|
|
||||||
-- When using nix, it will set lazy via LAZY env variable.
|
-- When using nix, it will set lazy via LAZY env variable.
|
||||||
local lazypath = vim.env.LAZY or (vim.fn.stdpath("data") .. "/lazy/lazy.nvim")
|
local lazypath = vim.env.LAZY or (vim.fn.stdpath("data") .. "/lazy/lazy.nvim")
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||||
if NIX then
|
if NIX then
|
||||||
error("LAZY environment variable to nix store was not found: " .. vim.env.LAZY)
|
error("LAZY environment variable to nix store was not found: " .. vim.env.LAZY)
|
||||||
return
|
return
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
return {
|
return {
|
||||||
"ron/ron.vim",
|
"ron-rs/ron.vim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
local extensions = {
|
local extensions = {
|
||||||
"json",
|
"json",
|
||||||
|
"jsonc",
|
||||||
"sql",
|
"sql",
|
||||||
"html",
|
"html",
|
||||||
"txt",
|
"txt",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue