From 6bd0938c018b52c138d608977043467eae93fefd Mon Sep 17 00:00:00 2001 From: José Juan Loeza Sierra Date: Tue, 31 Mar 2026 20:51:00 -0700 Subject: remove neovim --- dot-config/nvim/plugin/colorscheme.lua | 11 ------ dot-config/nvim/plugin/fzf.lua | 9 ----- dot-config/nvim/plugin/gitsigns.lua | 65 ---------------------------------- dot-config/nvim/plugin/hardtime.lua | 6 ---- dot-config/nvim/plugin/lsp.lua | 34 ------------------ dot-config/nvim/plugin/lualine.lua | 25 ------------- dot-config/nvim/plugin/notify.lua | 11 ------ dot-config/nvim/plugin/spellcheck.lua | 5 --- dot-config/nvim/plugin/todo.lua | 8 ----- dot-config/nvim/plugin/treesitter.lua | 20 ----------- dot-config/nvim/plugin/yazi.lua | 8 ----- 11 files changed, 202 deletions(-) delete mode 100644 dot-config/nvim/plugin/colorscheme.lua delete mode 100644 dot-config/nvim/plugin/fzf.lua delete mode 100644 dot-config/nvim/plugin/gitsigns.lua delete mode 100644 dot-config/nvim/plugin/hardtime.lua delete mode 100644 dot-config/nvim/plugin/lsp.lua delete mode 100644 dot-config/nvim/plugin/lualine.lua delete mode 100644 dot-config/nvim/plugin/notify.lua delete mode 100644 dot-config/nvim/plugin/spellcheck.lua delete mode 100644 dot-config/nvim/plugin/todo.lua delete mode 100644 dot-config/nvim/plugin/treesitter.lua delete mode 100644 dot-config/nvim/plugin/yazi.lua (limited to 'dot-config/nvim/plugin') 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", "", FzfLua.files) -vim.keymap.set("n", "/", FzfLua.live_grep) -vim.keymap.set("n", "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", "hs", gitsigns.stage_hunk) -vim.keymap.set("n", "hr", gitsigns.reset_hunk) - -vim.keymap.set("v", "hs", function() - gitsigns.stage_hunk({ vim.fn.line("."), vim.fn.line("v") }) -end) - -vim.keymap.set("v", "hr", function() - gitsigns.reset_hunk({ vim.fn.line("."), vim.fn.line("v") }) -end) - -vim.keymap.set("n", "hS", gitsigns.stage_buffer) -vim.keymap.set("n", "hR", gitsigns.reset_buffer) -vim.keymap.set("n", "hp", gitsigns.preview_hunk) -vim.keymap.set("n", "hi", gitsigns.preview_hunk_inline) - -vim.keymap.set("n", "hb", function() - gitsigns.blame_line({ full = true }) -end) - -vim.keymap.set("n", "hd", gitsigns.diffthis) - -vim.keymap.set("n", "hD", function() - gitsigns.diffthis("~") -end) - -vim.keymap.set("n", "hQ", function() - gitsigns.setqflist("all") -end) -vim.keymap.set("n", "hq", gitsigns.setqflist) - --- Toggles -vim.keymap.set("n", "tb", gitsigns.toggle_current_line_blame) -vim.keymap.set("n", "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", "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", "e", function() - require("yazi").yazi() -end) -- cgit v1.3