summaryrefslogtreecommitdiff
path: root/dot-config/nvim/plugin
diff options
context:
space:
mode:
authorJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 20:51:00 -0700
committerJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 20:51:00 -0700
commit6bd0938c018b52c138d608977043467eae93fefd (patch)
treed938dd42afa04270c8983509d3c2eb5b624066f9 /dot-config/nvim/plugin
parent288f9c41275288a2bd0193986f22206c81c2b5cf (diff)
remove neovim
Diffstat (limited to 'dot-config/nvim/plugin')
-rw-r--r--dot-config/nvim/plugin/colorscheme.lua11
-rw-r--r--dot-config/nvim/plugin/fzf.lua9
-rw-r--r--dot-config/nvim/plugin/gitsigns.lua65
-rw-r--r--dot-config/nvim/plugin/hardtime.lua6
-rw-r--r--dot-config/nvim/plugin/lsp.lua34
-rw-r--r--dot-config/nvim/plugin/lualine.lua25
-rw-r--r--dot-config/nvim/plugin/notify.lua11
-rw-r--r--dot-config/nvim/plugin/spellcheck.lua5
-rw-r--r--dot-config/nvim/plugin/todo.lua8
-rw-r--r--dot-config/nvim/plugin/treesitter.lua20
-rw-r--r--dot-config/nvim/plugin/yazi.lua8
11 files changed, 0 insertions, 202 deletions
diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua
deleted file mode 100644
index 697e538..0000000
--- a/dot-config/nvim/plugin/colorscheme.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-vim.pack.add({
- "https://github.com/projekt0n/github-nvim-theme",
-})
-
-require("github-theme").setup({
- options = {
- transparent = true,
- },
-})
-
-vim.cmd("colorscheme github_light")
diff --git a/dot-config/nvim/plugin/fzf.lua b/dot-config/nvim/plugin/fzf.lua
deleted file mode 100644
index 259d828..0000000
--- a/dot-config/nvim/plugin/fzf.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-vim.pack.add({
- "https://github.com/ibhagwan/fzf-lua",
-})
-
-require("fzf-lua").setup()
-
-vim.keymap.set("n", "<leader><Space>", FzfLua.files)
-vim.keymap.set("n", "<leader>/", FzfLua.live_grep)
-vim.keymap.set("n", "<leader>fb", FzfLua.buffers)
diff --git a/dot-config/nvim/plugin/gitsigns.lua b/dot-config/nvim/plugin/gitsigns.lua
deleted file mode 100644
index 5e5646f..0000000
--- a/dot-config/nvim/plugin/gitsigns.lua
+++ /dev/null
@@ -1,65 +0,0 @@
-vim.pack.add({
- "https://github.com/lewis6991/gitsigns.nvim",
-})
-
-require("gitsigns").setup({
- -- signs copied from LazyVim
- signs = {
- add = { text = "▎" },
- change = { text = "▎" },
- delete = { text = "" },
- topdelete = { text = "" },
- changedelete = { text = "▎" },
- untracked = { text = "▎" },
- },
- signs_staged = {
- add = { text = "▎" },
- change = { text = "▎" },
- delete = { text = "" },
- topdelete = { text = "" },
- changedelete = { text = "▎" },
- },
-})
-
-local gitsigns = require("gitsigns")
-
--- Suggested keymap
--- see https://github.com/lewis6991/gitsigns.nvim?tab=readme-ov-file#-keymaps
-
-vim.keymap.set("n", "<leader>hs", gitsigns.stage_hunk)
-vim.keymap.set("n", "<leader>hr", gitsigns.reset_hunk)
-
-vim.keymap.set("v", "<leader>hs", function()
- gitsigns.stage_hunk({ vim.fn.line("."), vim.fn.line("v") })
-end)
-
-vim.keymap.set("v", "<leader>hr", function()
- gitsigns.reset_hunk({ vim.fn.line("."), vim.fn.line("v") })
-end)
-
-vim.keymap.set("n", "<leader>hS", gitsigns.stage_buffer)
-vim.keymap.set("n", "<leader>hR", gitsigns.reset_buffer)
-vim.keymap.set("n", "<leader>hp", gitsigns.preview_hunk)
-vim.keymap.set("n", "<leader>hi", gitsigns.preview_hunk_inline)
-
-vim.keymap.set("n", "<leader>hb", function()
- gitsigns.blame_line({ full = true })
-end)
-
-vim.keymap.set("n", "<leader>hd", gitsigns.diffthis)
-
-vim.keymap.set("n", "<leader>hD", function()
- gitsigns.diffthis("~")
-end)
-
-vim.keymap.set("n", "<leader>hQ", function()
- gitsigns.setqflist("all")
-end)
-vim.keymap.set("n", "<leader>hq", gitsigns.setqflist)
-
--- Toggles
-vim.keymap.set("n", "<leader>tb", gitsigns.toggle_current_line_blame)
-vim.keymap.set("n", "<leader>tw", gitsigns.toggle_word_diff)
-
--- Text object
-vim.keymap.set({ "o", "x" }, "ih", gitsigns.select_hunk)
diff --git a/dot-config/nvim/plugin/hardtime.lua b/dot-config/nvim/plugin/hardtime.lua
deleted file mode 100644
index f956c86..0000000
--- a/dot-config/nvim/plugin/hardtime.lua
+++ /dev/null
@@ -1,6 +0,0 @@
-vim.pack.add({
- "https://github.com/m4xshen/hardtime.nvim",
- "https://github.com/MunifTanjim/nui.nvim",
-})
-
-require("hardtime").setup()
diff --git a/dot-config/nvim/plugin/lsp.lua b/dot-config/nvim/plugin/lsp.lua
deleted file mode 100644
index 557063b..0000000
--- a/dot-config/nvim/plugin/lsp.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-vim.pack.add({
- "https://github.com/neovim/nvim-lspconfig",
- "https://github.com/mason-org/mason.nvim",
- "https://github.com/stevearc/conform.nvim",
-})
-
-require("mason").setup()
-
-vim.lsp.enable({
- "expert", -- elixir
- "lua_ls", -- lua
- "prettier",
- "ruff", --python
- "tinymist", -- typst
-})
-
-require("conform").setup({
- -- Formatters
- formatters_by_ft = {
- elixir = { "mix" },
- javascript = { "prettier" },
- lua = { "stylua" },
- haskell = { "ormolu" },
- python = { "ruff format" },
- typescript = { "prettier" },
- typst = { "typstyle" },
- },
-
- format_on_save = {
- -- I recommend these options. See :help conform.format for details.
- lsp_format = "fallback",
- timeout_ms = 500,
- },
-})
diff --git a/dot-config/nvim/plugin/lualine.lua b/dot-config/nvim/plugin/lualine.lua
deleted file mode 100644
index 79e3805..0000000
--- a/dot-config/nvim/plugin/lualine.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-vim.pack.add({
- "https://github.com/nvim-lualine/lualine.nvim",
-})
-
-local wc = require("wordcount")
-
-local theme = require("my-lualine-theme")
-
-require("lualine").setup({
- options = {
- component_separators = "",
- section_separators = "",
- theme = theme,
- },
- sections = {
- lualine_y = {
- -- Add wordcount
- { wc.wordcount, cond = wc.is_available },
- -- Existing conf
- "progress",
- },
- },
-})
-
-vim.o.cmdheight = 0 -- Puts Lualine at very bottom
diff --git a/dot-config/nvim/plugin/notify.lua b/dot-config/nvim/plugin/notify.lua
deleted file mode 100644
index 75ceb47..0000000
--- a/dot-config/nvim/plugin/notify.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-vim.pack.add({
- "https://github.com/rcarriga/nvim-notify",
-})
-
-require("notify").setup({
- background_colour = "#000000",
- render = "wrapped-compact",
- stages = "static",
-})
-
-vim.notify = require("notify") -- Use "notify" plugin as default notify function
diff --git a/dot-config/nvim/plugin/spellcheck.lua b/dot-config/nvim/plugin/spellcheck.lua
deleted file mode 100644
index 21bffb1..0000000
--- a/dot-config/nvim/plugin/spellcheck.lua
+++ /dev/null
@@ -1,5 +0,0 @@
--- Enable custom spellcheck plugin
-
-require("spellcheck").setup({
- filetypes = { "gitcommit", "markdown", "plaintext", "text", "typst" },
-})
diff --git a/dot-config/nvim/plugin/todo.lua b/dot-config/nvim/plugin/todo.lua
deleted file mode 100644
index 2d9e0dd..0000000
--- a/dot-config/nvim/plugin/todo.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-vim.pack.add({
- "https://github.com/folke/todo-comments.nvim",
- "https://github.com/nvim-lua/plenary.nvim", -- dependency
-})
-
-require("todo-comments").setup()
-
-vim.keymap.set("n", "<leader>ft", require("todo-comments.fzf").todo)
diff --git a/dot-config/nvim/plugin/treesitter.lua b/dot-config/nvim/plugin/treesitter.lua
deleted file mode 100644
index e07a948..0000000
--- a/dot-config/nvim/plugin/treesitter.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-vim.pack.add({
- "https://github.com/nvim-treesitter/nvim-treesitter",
-})
-
-require("nvim-treesitter").setup()
-require("nvim-treesitter.configs").setup({
- ensure_installed = {
- "eex", -- elixir
- "elixir",
- "heex", -- elixir
- "html",
- "markdown",
- "markdown_inline",
- "python",
- "typst",
- },
- highlight = {
- enable = true,
- },
-})
diff --git a/dot-config/nvim/plugin/yazi.lua b/dot-config/nvim/plugin/yazi.lua
deleted file mode 100644
index d34c359..0000000
--- a/dot-config/nvim/plugin/yazi.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-vim.pack.add({
- "https://github.com/mikavilpas/yazi.nvim",
- "https://github.com/nvim-lua/plenary.nvim", --dependency
-})
-
-vim.keymap.set("n", "<leader>e", function()
- require("yazi").yazi()
-end)