aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-02-17 13:03:54 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-02-17 13:03:54 -0600
commit77fa5d6ee258c50991d4c641f561cc739251a517 (patch)
tree2191603a8e7078caa966ccfee64fb74c6b55b66e /nvim
parent9040f443e748917a9e79ca51024d6b3f5d14f43d (diff)
chore(nvim): remove unused plugin, firenvim
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/firenvim.lua30
1 files changed, 0 insertions, 30 deletions
diff --git a/nvim/.config/nvim/lua/plugins/firenvim.lua b/nvim/.config/nvim/lua/plugins/firenvim.lua
deleted file mode 100644
index eaeaecd..0000000
--- a/nvim/.config/nvim/lua/plugins/firenvim.lua
+++ /dev/null
@@ -1,30 +0,0 @@
----@type LazyPluginSpec
-local M = {
- "glacambre/firenvim",
- lazy = false,
- cond = not not vim.g.started_by_firenvim,
- opts = {
- localSettings = {
- [".*"] = {
- selector = [[ textarea:not([readonly]):not([class="handsontableInput"]), div[role="textbox"] ]],
- takeover = "never",
- cmdline = "firenvim",
- },
- },
- },
-}
-
-function M:build()
- require("lazy").load({
- plugins = self,
- wait = true,
- })
-
- vim.fn["firenvim#install"](0)
-end
-
-function M:config(opts)
- vim.g.firenvim_config = opts
-end
-
-return M