aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config')
-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