From e3b047bc0762626639242672b8073590a61d7c61 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 17 Mar 2025 14:37:15 +0100 Subject: [PATCH] Remove duplicate config --- nvim/lua/plugins/actions-preview.lua | 19 --- nvim/lua/plugins/autopairs.lua | 65 --------- nvim/lua/plugins/autotag.lua | 13 -- nvim/lua/plugins/bufdelete.lua | 9 -- nvim/lua/plugins/bufferline.lua | 64 --------- nvim/lua/plugins/cmp.lua | 131 ------------------ nvim/lua/plugins/colorizer.lua | 34 ----- nvim/lua/plugins/colors.lua | 139 ------------------- nvim/lua/plugins/comment-box.lua | 61 --------- nvim/lua/plugins/comment.lua | 10 -- nvim/lua/plugins/context.lua | 4 - nvim/lua/plugins/dap.lua | 103 -------------- nvim/lua/plugins/dressing.lua | 5 - nvim/lua/plugins/fidget.lua | 14 -- nvim/lua/plugins/grammar.lua | 12 -- nvim/lua/plugins/indent-blankline.lua | 9 -- nvim/lua/plugins/lastplace.lua | 7 - nvim/lua/plugins/lsp-lines.lua | 16 --- nvim/lua/plugins/lspconfig.lua | 189 -------------------------- nvim/lua/plugins/lualine.lua | 55 -------- nvim/lua/plugins/luasnip.lua | 12 -- nvim/lua/plugins/markdown-preview.lua | 17 --- nvim/lua/plugins/mason.lua | 41 ------ nvim/lua/plugins/multicursors.lua | 17 --- nvim/lua/plugins/navbuddy.lua | 146 -------------------- nvim/lua/plugins/neotest.lua | 70 ---------- nvim/lua/plugins/none-ls.lua | 15 -- nvim/lua/plugins/nvim-tree.lua | 24 ---- nvim/lua/plugins/startup.lua | 77 ----------- nvim/lua/plugins/surround.lua | 8 -- nvim/lua/plugins/telescope.lua | 87 ------------ nvim/lua/plugins/toggleterm.lua | 17 --- nvim/lua/plugins/treesitter.lua | 26 ---- nvim/lua/plugins/typescript-tools.lua | 30 ---- nvim/lua/plugins/vimtex.lua | 15 -- nvim/lua/plugins/whichkey.lua | 12 -- nvim/lua/plugins/zen-mode.lua | 14 -- 37 files changed, 1587 deletions(-) delete mode 100755 nvim/lua/plugins/actions-preview.lua delete mode 100755 nvim/lua/plugins/autopairs.lua delete mode 100755 nvim/lua/plugins/autotag.lua delete mode 100755 nvim/lua/plugins/bufdelete.lua delete mode 100755 nvim/lua/plugins/bufferline.lua delete mode 100755 nvim/lua/plugins/cmp.lua delete mode 100755 nvim/lua/plugins/colorizer.lua delete mode 100755 nvim/lua/plugins/colors.lua delete mode 100755 nvim/lua/plugins/comment-box.lua delete mode 100755 nvim/lua/plugins/comment.lua delete mode 100755 nvim/lua/plugins/context.lua delete mode 100755 nvim/lua/plugins/dap.lua delete mode 100755 nvim/lua/plugins/dressing.lua delete mode 100755 nvim/lua/plugins/fidget.lua delete mode 100755 nvim/lua/plugins/grammar.lua delete mode 100755 nvim/lua/plugins/indent-blankline.lua delete mode 100755 nvim/lua/plugins/lastplace.lua delete mode 100755 nvim/lua/plugins/lsp-lines.lua delete mode 100755 nvim/lua/plugins/lspconfig.lua delete mode 100755 nvim/lua/plugins/lualine.lua delete mode 100755 nvim/lua/plugins/luasnip.lua delete mode 100755 nvim/lua/plugins/markdown-preview.lua delete mode 100755 nvim/lua/plugins/mason.lua delete mode 100755 nvim/lua/plugins/multicursors.lua delete mode 100755 nvim/lua/plugins/navbuddy.lua delete mode 100755 nvim/lua/plugins/neotest.lua delete mode 100755 nvim/lua/plugins/none-ls.lua delete mode 100755 nvim/lua/plugins/nvim-tree.lua delete mode 100755 nvim/lua/plugins/startup.lua delete mode 100755 nvim/lua/plugins/surround.lua delete mode 100755 nvim/lua/plugins/telescope.lua delete mode 100755 nvim/lua/plugins/toggleterm.lua delete mode 100755 nvim/lua/plugins/treesitter.lua delete mode 100755 nvim/lua/plugins/typescript-tools.lua delete mode 100755 nvim/lua/plugins/vimtex.lua delete mode 100755 nvim/lua/plugins/whichkey.lua delete mode 100755 nvim/lua/plugins/zen-mode.lua diff --git a/nvim/lua/plugins/actions-preview.lua b/nvim/lua/plugins/actions-preview.lua deleted file mode 100755 index d298cf6..0000000 --- a/nvim/lua/plugins/actions-preview.lua +++ /dev/null @@ -1,19 +0,0 @@ -return { - "aznhe21/actions-preview.nvim", - config = function() - -- Configure actions-preview.nvim - require("actions-preview").setup({ - -- Floating window configuration (optional) - max_width = 80, -- Max width of the preview window - max_height = 12, -- Max height of the preview window - min_width = 20, -- Minimum width for the preview window - min_height = 4, -- Minimum height for the preview window - - -- Keymaps (optional) - keymaps = { - -- Trigger code action preview with a keybinding (example using a) - { "n", "ca", vim.lsp.buf.code_action }, - }, - }) - end, -} diff --git a/nvim/lua/plugins/autopairs.lua b/nvim/lua/plugins/autopairs.lua deleted file mode 100755 index 194ca3b..0000000 --- a/nvim/lua/plugins/autopairs.lua +++ /dev/null @@ -1,65 +0,0 @@ -return { - -- autoclose brackets and quotes - "windwp/nvim-autopairs", - event = "InsertEnter", - config = function() - require("nvim-autopairs").setup({ - fast_wrap = { - map = "", - chars = { "{", "[", "(", '"', "'", "`" }, - }, - }) - - -- add spaces between parentheses - local npairs = require("nvim-autopairs") - local Rule = require("nvim-autopairs.rule") - local cond = require("nvim-autopairs.conds") - - local brackets = { { "(", ")" }, { "[", "]" }, { "{", "}" } } - npairs.add_rules({ - -- Rule for a pair with left-side ' ' and right side ' ' - Rule(" ", " ") - -- Pair will only occur if the conditional function returns true - :with_pair(function(opts) - -- We are checking if we are inserting a space in (), [], or {} - local pair = opts.line:sub(opts.col - 1, opts.col) - return vim.tbl_contains({ - brackets[1][1] .. brackets[1][2], - brackets[2][1] .. brackets[2][2], - brackets[3][1] .. brackets[3][2], - }, pair) - end) - :with_move(cond.none()) - :with_cr(cond.none()) - -- We only want to delete the pair of spaces when the cursor is as such: ( | ) - :with_del( - function(opts) - local col = vim.api.nvim_win_get_cursor(0)[2] - local context = opts.line:sub(col - 1, col + 2) - return vim.tbl_contains({ - brackets[1][1] .. " " .. brackets[1][2], - brackets[2][1] .. " " .. brackets[2][2], - brackets[3][1] .. " " .. brackets[3][2], - }, context) - end - ), - }) - -- For each pair of brackets we will add another rule - for _, bracket in pairs(brackets) do - npairs.add_rules({ - -- Each of these rules is for a pair with left-side '( ' and right-side ' )' for each bracket type - Rule(bracket[1] .. " ", " " .. bracket[2]) - :with_pair(cond.none()) - :with_move(function(opts) - return opts.char == bracket[2] - end) - :with_del(cond.none()) - :use_key(bracket[2]) - -- Removes the trailing whitespace that can occur without this - :replace_map_cr(function(_) - return "2xiO" - end), - }) - end - end, -} diff --git a/nvim/lua/plugins/autotag.lua b/nvim/lua/plugins/autotag.lua deleted file mode 100755 index 7a11c82..0000000 --- a/nvim/lua/plugins/autotag.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - "windwp/nvim-ts-autotag", - config = function () - require('nvim-ts-autotag').setup({ - opts = { - -- Defaults - enable_close = true, -- Auto close tags - enable_rename = true, -- Auto rename pairs of tags - enable_close_on_slash = true -- Auto close on trailing ', 'Bdelete', { silent = true, desc = "close current buffer" }) - end -} - diff --git a/nvim/lua/plugins/bufferline.lua b/nvim/lua/plugins/bufferline.lua deleted file mode 100755 index b83dfa4..0000000 --- a/nvim/lua/plugins/bufferline.lua +++ /dev/null @@ -1,64 +0,0 @@ -return { - -- tab line - "akinsho/bufferline.nvim", - version = "*", - dependencies = "nvim-tree/nvim-web-devicons", - config = function() - local bufferline = require("bufferline") - bufferline.setup({ - options = { - mode = "buffers", - show_buffer_close_icons = false, - middle_mouse_command = "bdelete! %d", - indicator = { style = "underline" }, - offsets = { - { - filetype = "NvimTree", - text = " ", - text_align = "center", - separator = true, - }, - }, - - separator_style = { " ", " " }, - diagnostics = "nvim_lsp", - diagnostics_indicator = function(count, level, diagnostics_dict, context) - local icon = level:match("error") and "󰅚 " or "󰀪 " - return icon .. count - end, - }, - }) - - local opts = { silent = true } - -- go to buffer - opts.desc = "go to buffer 1" - vim.keymap.set("n", "g1", "BufferLineGoToBuffer 1", opts) - opts.desc = "go to buffer 2" - vim.keymap.set("n", "g2", "BufferLineGoToBuffer 2", opts) - opts.desc = "go to buffer 3" - vim.keymap.set("n", "g3", "BufferLineGoToBuffer 3", opts) - opts.desc = "go to buffer 4" - vim.keymap.set("n", "g4", "BufferLineGoToBuffer 4", opts) - opts.desc = "go to buffer 5" - vim.keymap.set("n", "g5", "BufferLineGoToBuffer 5", opts) - opts.desc = "go to buffer 6" - vim.keymap.set("n", "g6", "BufferLineGoToBuffer 6", opts) - opts.desc = "go to buffer 7" - vim.keymap.set("n", "g7", "BufferLineGoToBuffer 7", opts) - opts.desc = "go to buffer 8" - vim.keymap.set("n", "g8", "BufferLineGoToBuffer 8", opts) - opts.desc = "go to buffer 9" - vim.keymap.set("n", "g9", "BufferLineGoToBuffer 9", opts) - opts.desc = "go to buffer 10" - vim.keymap.set("n", "g0", "BufferLineGoToBuffer 10", opts) - opts.desc = nil - -- cycle between buffers - vim.keymap.set("n", "J", "BufferLineCyclePrev", opts) - vim.keymap.set("n", "K", "BufferLineCycleNext", opts) - -- move buffers - vim.keymap.set("n", "", "BufferLineMovePrev", opts) - vim.keymap.set("n", "", "BufferLineMoveNext", opts) - -- go to previous buffer - vim.keymap.set({ "n", "i" }, "", "b#", opts) - end, -} diff --git a/nvim/lua/plugins/cmp.lua b/nvim/lua/plugins/cmp.lua deleted file mode 100755 index 2acd453..0000000 --- a/nvim/lua/plugins/cmp.lua +++ /dev/null @@ -1,131 +0,0 @@ -return { - -- competion - "hrsh7th/nvim-cmp", - event = "InsertEnter", - dependencies = { - { "hrsh7th/cmp-buffer" }, -- source for text in buffer - { "hrsh7th/cmp-path" }, -- source for file system paths - { "L3MON4D3/LuaSnip" }, -- snippet engine - { "saadparwaiz1/cmp_luasnip" }, -- for autocompletion - { "rafamadriz/friendly-snippets" }, -- useful snippets - { "onsails/lspkind.nvim" }, -- icons for cmp - { "hrsh7th/cmp-nvim-lsp-signature-help" }, -- signature help - }, - - config = function() - local cmp = require("cmp") - local lspkind = require("lspkind") - local luasnip = require("luasnip") - - -- loads vscode style snippets from installed plugins (e.g. friendly-snippets) - require("luasnip.loaders.from_vscode").lazy_load() - require("luasnip.loaders.from_vscode").load({paths = { "~/.config/nvim/my_snippets" }}) - luasnip.setup({ - region_check_events = { "CursorMoved" }, - delete_check_events = { "TextChanged" }, - }) - - -- luasnip.filetype_extend("htmldjango", { "html" }) - - cmp.setup({ - completion = { - completeopt = "menu,menuone,preview,noselect", - }, - - window = { - documentation = cmp.config.window.bordered(), - completion = cmp.config.window.bordered({ - winhighlight = "Normal:CmpPmenu,CursorLine:PmenuSel,Search:None", - }), - }, - - snippet = { -- configure how nvim-cmp interacts with snippet engine - expand = function(args) - luasnip.lsp_expand(args.body) - end, - }, - - mapping = cmp.mapping.preset.insert({ - [""] = cmp.mapping.select_next_item({ behavior = cmp.ConfirmBehavior.Select }), -- next suggestion - [""] = cmp.mapping.select_prev_item({ behavior = cmp.ConfirmBehavior.Select }), -- prev suggestion - [""] = cmp.mapping.scroll_docs(4, { behavior = cmp.ConfirmBehavior.Select }), -- docs forward - [""] = cmp.mapping.scroll_docs(-4, { behavior = cmp.ConfirmBehavior.Select }), -- docs back - [""] = cmp.mapping.complete(), -- show completion suggestions - [""] = cmp.mapping.abort(), -- close completion window - [""] = cmp.mapping.confirm({ select = false }), -- autocomplete if selected - -- Mapping for Tab key - [""] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.confirm({ behavior = cmp.ConfirmBehavior.Insert, select = true }) - elseif require("luasnip").expandable() then - -- Expands snippet if possible - require("luasnip").expand() - else - -- Otherwise, fallback (insert a tab character) - fallback() - end - end, { "i", "s" }), - - -- Mapping for jumping in snippets - [""] = cmp.mapping(function(fallback) - if require("luasnip").jumpable() then - -- Jump backwards if inside a snippet - require("luasnip").jump() - else - -- Otherwise, fallback (insert a tab character) - fallback() - end - end, { "i", "s" }), - - -- Mapping for jumping backwards in snippets - [""] = cmp.mapping(function(fallback) - if require("luasnip").jumpable() then - -- Jump backwards if inside a snippet - require("luasnip").jump() - else - -- Otherwise, fallback (insert a tab character) - fallback() - end - end, { "i", "s" }) - }), - - -- sources for autocompletion - sources = cmp.config.sources({ - { name = "nvim_lsp" }, -- lsp - { name = "luasnip" }, -- snippets - { name = "buffer" }, -- text within current buffer - { name = "path" }, -- file system paths - { name = 'nvim_lsp_signature_help' }, -- signature help - }), - - formatting = { - fields = { "kind", "abbr", "menu" }, - format = lspkind.cmp_format({ - mode = "symbol", -- show only symbol annotations - maxwidth = 50, -- prevent the popup from showing more than provided characters (e.g 50 will not show more than 50 characters) - -- can also be a function to dynamically calculate max width such as - -- maxwidth = function() return math.floor(0.45 * vim.o.columns) end, - ellipsis_char = "…", -- when popup menu exceed maxwidth, the truncated part would show ellipsis_char instead (must define maxwidth first) - show_labelDetails = true, -- show labelDetails in menu. Disabled by default - - -- The function below will be called before any actual modifications from lspkind - -- so that you can provide more controls on popup customization. (See [#30](https://github.com/onsails/lspkind-nvim/pull/30)) - before = function(entry, vim_item) - return vim_item - end, - }), - }, - }) - - local opts = { silent = true } - opts.desc = "next snippet placeholder" - vim.keymap.set({ "i", "s" }, "", function() - luasnip.jump(1) - end, opts) - - opts.desc = "previous snippet placeholder" - vim.keymap.set({ "i", "s" }, "", function() - luasnip.jump(-1) - end, opts) - end, -} diff --git a/nvim/lua/plugins/colorizer.lua b/nvim/lua/plugins/colorizer.lua deleted file mode 100755 index 41fa8a9..0000000 --- a/nvim/lua/plugins/colorizer.lua +++ /dev/null @@ -1,34 +0,0 @@ -return { - -- colorizes colors in code - 'NvChad/nvim-colorizer.lua' , - --cmd = 'ColorizerToggle', - config = function () - require("colorizer").setup { - filetypes = { "*" }, - user_default_options = { - RGB = true, -- #RGB hex codes - #FCE - RRGGBB = true, -- #RRGGBB hex codes - #F5C2E7 - names = true, -- "Name" codes - lightpink - RRGGBBAA = true, -- #RRGGBBAA hex codes - #F5C2E7CC - AARRGGBB = true, -- 0xAARRGGBB hex codes - 0xCCF5C2E7 - rgb_fn = true, -- CSS rgb() and rgba() functions - rgba(245,194,231,0.8) - hsl_fn = true, -- CSS hsl() and hsla() functions - hsl(0.88,0.72,0.86) - css = true, -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB - css_fn = true, -- Enable all CSS *functions*: rgb_fn, hsl_fn - -- Available modes for `mode`: foreground, background, virtualtext - mode = "background", -- Set the display mode. - -- Available methods are false / true / "normal" / "lsp" / "both" - -- True is same as normal - tailwind = false, -- Enable tailwind colors - -- parsers can contain values used in |user_default_options| - sass = { enable = false, parsers = { "css" }, }, -- Enable sass colors - virtualtext = "■", - -- update color values even if buffer is not focused - -- example use: cmp_menu, cmp_docs - always_update = false - }, - -- all the sub-options of filetypes apply to buftypes - buftypes = {}, - } - end, -} diff --git a/nvim/lua/plugins/colors.lua b/nvim/lua/plugins/colors.lua deleted file mode 100755 index 73942fb..0000000 --- a/nvim/lua/plugins/colors.lua +++ /dev/null @@ -1,139 +0,0 @@ -return { - -- color theme - "EdenEast/nightfox.nvim", - lazy = false, - priority = 1000, - config = function() - local Shade = require("nightfox.lib.shade") - require("nightfox").setup({ - options = { - transparent = true, - styles = { - comments = "italic", - functions = "italic", - keywords = "italic", - types = "italic", - } - }, - palettes = { - all = { - black = Shade.new("#404944", 0.15, -0.15), - gray = Shade.new("#505050", 0.15, -0.15), - white = Shade.new("#dee4df", 0.15, -0.15), - red = Shade.new("#ff6060", 0.15, -0.15), - darkred = Shade.new("#903030", 0.15, -0.15), - strongred = Shade.new("#bb0000", 0.15, -0.15), - orange = Shade.new("#ce8c14", 0.15, -0.15), - green = Shade.new("#a3d397", 0.10, -0.15), - darkgreen = Shade.new("#005602", 0.10, -0.15), - darkyellow = Shade.new("#dfd100", 0.10, -0.15), - yellow = Shade.new("#e3c46d", 0.15, -0.15), - darkblue = Shade.new("#1010aa", 0.15, -0.15), - blue = Shade.new("#7070dd", 0.15, -0.15), - magenta = Shade.new("#C02490", 0.30, -0.15), - pink = Shade.new("#ff82c2", 0.15, -0.15), - purple = Shade.new("#761464", 0.15, -0.15), - cyan = Shade.new("#7ac9ff", 0.15, -0.15), - lightblue = Shade.new("#5c77ff", 0.15, -0.15), - softblue = Shade.new("#10ddff", 0.15, -0.15), - brown = Shade.new("#553200", 0.15, -0.15), - - bg0 = "#0f1512", -- Dark bg (status line and float) - bg1 = "#0f1512", -- Default bg - bg2 = "#1b211e", -- Lighter bg (colorcolm folds) - bg3 = "#252b28", -- Lighter bg (cursor line) - bg4 = "#303633", -- Conceal, border fg - - fg0 = "#dee4df", -- Lighter fg - fg1 = "#dee4df", -- Default fg - fg2 = "#dee4df", -- Darker fg (status line) - fg3 = "#89938d", -- Darker fg (line numbers, fold colums) - - sel0 = "#404944", -- Popup bg, visual selection - sel1 = "#00513b", -- Popup sel bg, search bg - - comment = "#89938d", - }, - }, - specs = { - carbonfox = { - syntax = { - comment = "comment", - bracket = "darkyellow", - builtin0 = "softblue", - builtin1 = "sel0", - builtin2 = "sel1", - conditional = "darkblue", - const = "gray", - dep = "darkred", - field = "green", - func = "pink", - ident = "darkgreen", - keyword = "blue", - number = "yellow", - operator = "white", - preproc = "strongred", - regex = "purple", - statement = "magenta", - string = "cyan", - type = "red", - variable = "orange" - }, - diag = { - error = "darkred", - warn = "yellow", - info = "lightblue", - hint = "fg3", - ok = "darkgreen", - }, - diag_bg = { - error = "red", - warn = "#a16b00", - info = "cyan", - hint = "bg3", - ok = "green"; - }, - diff = { - add = "darkgreen", - delete = "darkred", - changed = "lightblue", - text = "fg0" - }, - git = { - add = "darkgreen", - removed = "darkred", - changed = "lightblue", - conflict = "orange", - ignored = "gray" - } - } - }, - groups = { - all = { - Cursor = { fg = "palette.white", bg = "palette.lightblue" }, -- character under the cursor - WinSeparator = { fg = "palette.bg2" }, -- the column separating vertically split windows - EndOfBuffer = { link = "WinSeparator" }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|. - CursorLine = { bg = "palette.bg1" }, - CursorLineNr = { fg = "palette.cyan", style = "bold" }, -- Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. - Search = { fg = "palette.lightblue", bg = "#00513b" }, -- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out. - IncSearch = { fg = "palette.lightblue", bg = "#1a6b51" }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c" - ModeMsg = { fg = "palette.fg3", style = "bold" }, -- 'showmode' message (e.g., "-- INSERT --") - - NvimTreeRootFolder = { fg = "palette.lightblue", style = "bold" }, - NvimTreeFolderName = { fg = "palette.lightblue" }, - NvimTreeFolderIcon = { fg = "palette.lightblue" }, - NvimTreeOpenedFolderName = { fg = "palette.lightblue" }, - NvimTreeSymlinkFolderName = { fg = "palette.magenta" }, - - NvimTreeExecFile = { fg = "palette.red" }, - NvimTreeImageFile = { fg = "palette.white" }, - NvimTreeSpecialFile = { fg = "palette.yellow" }, - NvimTreeSymlink = { fg = "palette.magenta" }, - }, - }, - }) - if not vim.g.vscode then - vim.cmd([[colorscheme carbonfox]]) - end - end, -} diff --git a/nvim/lua/plugins/comment-box.lua b/nvim/lua/plugins/comment-box.lua deleted file mode 100755 index f4e2be7..0000000 --- a/nvim/lua/plugins/comment-box.lua +++ /dev/null @@ -1,61 +0,0 @@ -return { - "LudoPinelli/comment-box.nvim", - config = function() - -- add custom commentstring to plugin source, since configuration is not yet supported - local function insertlang(lang, commentstring) - local filename = os.getenv("HOME") - .. "/.local/share/nvim/lazy/comment-box.nvim/lua/comment-box/commentstrings.lua" - local file = io.open(filename, "r") - if not file then - return - end - - local content = file:read("a") - if string.match(content, lang) then - return - end - - local lines = {} - for line in content:gmatch("[^\r\n]+") do - table.insert(lines, line) - end - file:close() - - table.insert(lines, 24, " " .. lang .. ' = { "' .. commentstring .. '", "" },') - - file = io.open(filename, "w") - if not file then - return - end - - file:write(table.concat(lines, "\n")) - - file:close() - end - - insertlang("hyprlang", "#%s") - - require("comment-box").setup({ - comment_style = "line", - doc_width = 70, - box_width = 50, - line_width = 70, - }) - - local opts = { silent = true } - - opts.desc = "comment text box" - vim.keymap.set({"n", "v"}, "cb", ":CBccbox", opts) - opts.desc = "comment text line" - vim.keymap.set({"n", "v"}, "cl", ":CBllline", opts) - opts.desc = "comment line" - vim.keymap.set({"n", "v"}, "ce", ":CBline", opts) - opts.desc = "comment highlight" - vim.keymap.set({"n", "v"}, "ch", ":CBlcbox18", opts) - - opts.desc = "delete comment box" - vim.keymap.set({"n", "v"}, "cd", ":CBd", opts) - opts.desc = "yank comment box contents" - vim.keymap.set({"n", "v"}, "cy", ":CBy", opts) - end, -} diff --git a/nvim/lua/plugins/comment.lua b/nvim/lua/plugins/comment.lua deleted file mode 100755 index 86e9525..0000000 --- a/nvim/lua/plugins/comment.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - -- add comment keybinds - 'numToStr/Comment.nvim', - opts = {}, - lazy = false, - config = function() - require('Comment').setup() - require('Comment.ft').set('hyprlang', '#%s') - end -} diff --git a/nvim/lua/plugins/context.lua b/nvim/lua/plugins/context.lua deleted file mode 100755 index d68fc02..0000000 --- a/nvim/lua/plugins/context.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - -- similar to sticky scroll in vscode - "nvim-treesitter/nvim-treesitter-context", -} diff --git a/nvim/lua/plugins/dap.lua b/nvim/lua/plugins/dap.lua deleted file mode 100755 index e00b0ed..0000000 --- a/nvim/lua/plugins/dap.lua +++ /dev/null @@ -1,103 +0,0 @@ -return { - "mfussenegger/nvim-dap", - dependencies = { - { "nvim-neotest/nvim-nio" }, - { "rcarriga/nvim-dap-ui" }, - { "theHamsta/nvim-dap-virtual-text" }, - { "nvim-telescope/telescope-dap.nvim" }, - }, - -- stylua: ignore - keys = { - { "bR", function() require("dap").run_to_cursor() end, desc = "Run to Cursor", }, - { "bE", function() require("dapui").eval(vim.fn.input "[Expression] > ") end, desc = "Evaluate Input", }, - { "bC", function() require("dap").set_breakpoint(vim.fn.input "[Condition] > ") end, desc = "Conditional Breakpoint", }, - { "bU", function() require("dapui").toggle() end, desc = "Toggle UI", }, - { "bb", function() require("dap").step_back() end, desc = "Step Back", }, - { "bc", function() require("dap").continue() end, desc = "Continue", }, - { "bd", function() require("dap").disconnect() end, desc = "Disconnect", }, - { "be", function() require("dapui").eval() end, desc = "Evaluate", }, - { "bg", function() require("dap").session() end, desc = "Get Session", }, - { "bh", function() require("dap.ui.widgets").hover() end, desc = "Hover Variables", }, - { "bS", function() require("dap.ui.widgets").scopes() end, desc = "Scopes", }, - { "bi", function() require("dap").step_into() end, desc = "Step Into", }, - { "bo", function() require("dap").step_over() end, desc = "Step Over", }, - { "bp", function() require("dap").pause.toggle() end, desc = "Pause", }, - { "bq", function() require("dap").close() end, desc = "Quit", }, - { "br", function() require("dap").repl.toggle() end, desc = "Toggle REPL", }, - { "bs", function() require("dap").continue() end, desc = "Start", }, - { "bt", function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint", }, - { "bx", function() require("dap").terminate() end, desc = "Terminate", }, - { "bu", function() require("dap").step_out() end, desc = "Step Out", }, - }, - config = function() - require("nvim-dap-virtual-text").setup({ - commented = true, - }) - - local dap, dapui = require("dap"), require("dapui") - dapui.setup({}) - - dap.listeners.after.event_initialized["dapui_config"] = function() - dapui.open() - end - dap.listeners.before.event_terminated["dapui_config"] = function() - dapui.close() - end - dap.listeners.before.event_exited["dapui_config"] = function() - dapui.close() - end - - vim.fn.sign_define("DapBreakpoint", { text = "●", texthl = "DapBreakpoint", linehl = "", numhl = ""}) - vim.fn.sign_define("DapBreakpointCondition", { text = "●", texthl = "DapBreakpointCondition", linehl = "", numhl = ""}) - vim.fn.sign_define("DapLogPoint", { text = "◆", texthl = "DapLogPoint", linehl = "", numhl = ""}) - vim.fn.sign_define('DapStopped', { text='', texthl='DapStopped', linehl='DapStopped', numhl= 'DapStopped' }) - - dap.configurations.python = { - { - type = "python", - request = "launch", - name = "Launch file", - - -- Options below are for debugpy, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings for supported options - - program = "${file}", -- This configuration will launch the current file if used. - pythonPath = function() - local cwd = vim.fn.getcwd() - if vim.fn.executable(cwd .. "/venv/bin/python") == 1 then - return cwd .. "/venv/bin/python" - elseif vim.fn.executable(cwd .. "/.venv/bin/python") == 1 then - return cwd .. "/.venv/bin/python" - else - return "/usr/bin/python" - end - end, - }, - } - - dap.adapters.python = function(cb, config) - if config.request == "attach" then - ---@diagnostic disable-next-line: undefined-field - local port = (config.connect or config).port - ---@diagnostic disable-next-line: undefined-field - local host = (config.connect or config).host or "127.0.0.1" - cb({ - type = "server", - port = assert(port, "`connect.port` is required for a python `attach` configuration"), - host = host, - options = { - source_filetype = "python", - }, - }) - else - cb({ - type = "executable", - command = vim.fn.stdpath("data") .. '/mason/packages/debugpy/venv/bin/python', - args = { "-m", "debugpy.adapter" }, - options = { - source_filetype = "python", - }, - }) - end - end - end, -} diff --git a/nvim/lua/plugins/dressing.lua b/nvim/lua/plugins/dressing.lua deleted file mode 100755 index ff47990..0000000 --- a/nvim/lua/plugins/dressing.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - -- prettier prompts - 'stevearc/dressing.nvim', - event = 'VeryLazy', -} diff --git a/nvim/lua/plugins/fidget.lua b/nvim/lua/plugins/fidget.lua deleted file mode 100755 index 687be41..0000000 --- a/nvim/lua/plugins/fidget.lua +++ /dev/null @@ -1,14 +0,0 @@ -return { - -- notifications && lsp progress msgs - "j-hui/fidget.nvim", - config = function() - require("fidget").setup({ - notification = { - window = { - winblend = 0, - } - } - }) - end - -} diff --git a/nvim/lua/plugins/grammar.lua b/nvim/lua/plugins/grammar.lua deleted file mode 100755 index 7f8613f..0000000 --- a/nvim/lua/plugins/grammar.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - "kikofmas/grammarous.nvim", - config = function () - local keymap = vim.keymap - local opts = require('utils').opts - - keymap.set('n', 'sl', ':GrammarousCheck', opts('LanguageTool Spell Checker')) - keymap.set('n', 'sc', ':GrammarousCheck --comments-only', opts('LanguageTool Spell Checker, only comments')) - keymap.set('n', 'ss', ':set spell', opts('Start built-in spell checker')) - keymap.set('n', 'sn', ':set nospell', opts('Stop spell checker')) - end -} diff --git a/nvim/lua/plugins/indent-blankline.lua b/nvim/lua/plugins/indent-blankline.lua deleted file mode 100755 index 294d311..0000000 --- a/nvim/lua/plugins/indent-blankline.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - -- indent lines - 'lukas-reineke/indent-blankline.nvim', - opts = {}, - main = 'ibl', - config = function() - require('ibl').setup() - end -} diff --git a/nvim/lua/plugins/lastplace.lua b/nvim/lua/plugins/lastplace.lua deleted file mode 100755 index 2cacfe2..0000000 --- a/nvim/lua/plugins/lastplace.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - -- open file at previous position - 'ethanholz/nvim-lastplace', - config = function() - require('nvim-lastplace').setup{} - end, -} diff --git a/nvim/lua/plugins/lsp-lines.lua b/nvim/lua/plugins/lsp-lines.lua deleted file mode 100755 index 3f2f33c..0000000 --- a/nvim/lua/plugins/lsp-lines.lua +++ /dev/null @@ -1,16 +0,0 @@ -return { - ---------- for lsp diagnostic lines ---------- - "https://git.sr.ht/~whynothugo/lsp_lines.nvim", - event = "LspAttach", - config = function() - require("lsp_lines").setup() - vim.diagnostic.config({ virtual_lines = false }) - - local lsplines = false - vim.keymap.set("n", "L", function () - lsplines = not lsplines - vim.diagnostic.config({ virtual_text = not lsplines }) - vim.diagnostic.config({ virtual_lines = lsplines }) - end, { desc = "Toggle lsp_lines" }) - end, -} diff --git a/nvim/lua/plugins/lspconfig.lua b/nvim/lua/plugins/lspconfig.lua deleted file mode 100755 index 87c8d2b..0000000 --- a/nvim/lua/plugins/lspconfig.lua +++ /dev/null @@ -1,189 +0,0 @@ -return { - -- lsp configuration - "neovim/nvim-lspconfig", - event = { "BufReadPre", "BufNewFile" }, - dependencies = { - "hrsh7th/cmp-nvim-lsp", - { "antosha417/nvim-lsp-file-operations", config = true }, - -- "mfussenegger/nvim-jdtls", - "nvim-java/nvim-java" - }, - config = function() - require('java').setup() - -- import lspconfig plugin - local lspconfig = require("lspconfig") - - -- import cmp-nvim-lsp plugin - local cmp_nvim_lsp = require("cmp_nvim_lsp") - - local keymap = vim.keymap - - local opts = { silent = true } - - local on_attach = function(client, bufnr) - opts.buffer = bufnr - - -- set keybinds - opts.desc = "Show LSP references" - keymap.set("n", "gR", "Telescope lsp_references", opts) - - opts.desc = "Go to declaration" - keymap.set("n", "gD", ":lua vim.lsp.buf.declaration", opts) - - opts.desc = "Show LSP definitions" - keymap.set("n", "gd", "Telescope lsp_definitions", opts) - - opts.desc = "Show LSP implementations" - keymap.set("n", "gi", "Telescope lsp_implementations", opts) - - opts.desc = "Show LSP type definitions" - keymap.set("n", "gt", "Telescope lsp_type_definitions", opts) - - opts.desc = "See available code actions" - keymap.set({ "n", "v" }, "ca", vim.lsp.buf.code_action, opts) - - opts.desc = "Format current file" - keymap.set("n", "gf", vim.lsp.buf.format, opts) - - opts.desc = "Smart rename" - keymap.set("n", "n", vim.lsp.buf.rename, opts) - - opts.desc = "Show buffer diagnostics" - keymap.set("n", "ga", "Telescope diagnostics bufnr=0", opts) - - opts.desc = "Show line diagnostics" - keymap.set("n", "gA", ":lua vim.diagnostic.open_float()", opts) - - opts.desc = "Go to previous diagnostic" - keymap.set("n", "[d", vim.diagnostic.goto_prev, opts) - - opts.desc = "Go to next diagnostic" - keymap.set("n", "]d", vim.diagnostic.goto_next, opts) - - opts.desc = "Show documentation for what is under cursor" - keymap.set("n", "k", vim.lsp.buf.hover, opts) - - opts.desc = "Restart LSP" - keymap.set("n", "rs", ":LspRestart", opts) - - vim.opt.signcolumn = "yes" -- reserve space for diagnostics - end - - -- used to enable autocompletion (assign to every lsp server config) - -- local capabilities = cmp_nvim_lsp.default_capabilities() - local capabilities = vim.lsp.protocol.make_client_capabilities() - capabilities.textDocument.completion.completionItem.snippetSupport = true - - -- Change the Diagnostic symbols in the sign column (gutter) - local signs = { Error = "󰅚 ", Warn = "󰀪 ", Hint = "󰌶", Info = "󰋽 " } - for type, icon in pairs(signs) do - local hl = "DiagnosticSign" .. type - vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" }) - end - - lspconfig.bashls.setup({ - capabilities = capabilities, - on_attach = on_attach, - }) - - lspconfig.clangd.setup({ - cmd = { - "clangd", - "--suggest-missing-includes", - "--clang-tidy", - }, - filetypes = { "c", "cpp", "objc", "objcpp", "cuda", "proto", "ino" }, - capabilities = capabilities, - on_attach = on_attach, - }) - - lspconfig.cssls.setup({ - capabilities = capabilities, - on_attach = on_attach, - }) - - lspconfig.html.setup({ - capabilities = capabilities, - on_attach = on_attach, - }) - - lspconfig.lua_ls.setup({ - capabilities = capabilities, - on_attach = on_attach, - settings = { - Lua = { - -- make the language server recognize "vim" global - diagnostics = { - globals = { "vim" }, - }, - workspace = { - -- make language server aware of runtime files - library = { - [vim.fn.expand("$VIMRUNTIME/lua")] = true, - [vim.fn.stdpath("config") .. "/lua"] = true, - }, - }, - }, - }, - }) - - lspconfig.pyright.setup({ - capabilities = capabilities, - on_attach = on_attach, - }) - - local java_on_attach = function(client, bufnr) - on_attach(client, bufnr) - - opts.buffer = bufnr - -- Keybinds for testing, refactoring, java specific - opts.desc = "Java profiling" - keymap.set("n", "jp", ":JavaProfile", opts) - - opts.desc = "Java Refactor: Extract Variable (create variable from cursor)" - keymap.set("n", "jev", ":JavaExtractVariable", opts) - - opts.desc = "Java Refactor: Extract Variable all occurrences (create variable from cursor)" - keymap.set("n", "jea", ":JavaExtractVariableAllOccurrence", opts) - - opts.desc = "Java Refactor: Extract Const (create const from cursor)" - keymap.set("n", "jec", ":JavaExtractConst", opts) - - opts.desc = "Java Refactor: Extract Method (create method from cursor)" - keymap.set("n", "jev", ":JavaExtractMethod", opts) - - opts.desc = "Java Refactor: Extract Field (create field from cursor)" - keymap.set("n", "jev", ":JavaExtractField", opts) - - -- Java testing, Debugging - opts.desc = "Java Testing: Run test class in buffer" - keymap.set("n", "jtc", ":JavaTestRunCurrentClass", opts) - - opts.desc = "Java Testing: Debug test class in buffer" - keymap.set("n", "jdc", ":JavaTestDebugCurrentClass", opts) - - opts.desc = "Java Testing: Run current method in buffer" - keymap.set("n", "jtm", ":JavaTestRunCurrentMethod", opts) - - opts.desc = "Java Testing: Debug current method in buffer" - keymap.set("n", "jdm", ":JavaTestDebugCurrentMethod", opts) - - opts.desc = "Java Testing: View last report" - keymap.set("n", "jtv", ":JavaTestViewLastReport", opts) - end - - lspconfig.jdtls.setup({ - capabilities = capabilities, - on_attach = java_on_attach, - }) - - lspconfig.texlab.setup{ - cmd = { "texlab" }, - filetypes = { "tex", "latex", "bib" }, - root_dir = function(fname) - return vim.loop.cwd() - end, - } - - end, -} diff --git a/nvim/lua/plugins/lualine.lua b/nvim/lua/plugins/lualine.lua deleted file mode 100755 index cd6a112..0000000 --- a/nvim/lua/plugins/lualine.lua +++ /dev/null @@ -1,55 +0,0 @@ -return { - -- status line - 'nvim-lualine/lualine.nvim', - dependencies = { 'nvim-tree/nvim-web-devicons' }, - config = function() - local function getWords() - local wc = vim.api.nvim_eval("wordcount()") - if wc["visual_words"] then - return wc["visual_words"] - else - return wc["words"] - end - end - require('lualine').setup { - options = { - icons_enabled = true, - theme = "auto", - component_separators = { left = '', right = ''}, - section_separators = { left = '', right = ''}, - disabled_filetypes = { - statusline = {}, - winbar = {}, - }, - ignore_focus = { 'NvimTree' }, - always_divide_middle = true, - globalstatus = false, - refresh = { - statusline = 1000, - tabline = 1000, - winbar = 1000, - } - }, - sections = { - lualine_a = { { 'mode', separator = { left = '', right = '' }, } }, - lualine_b = {'branch', 'diff', 'diagnostics'}, - lualine_c = {'filename'}, - lualine_x = { getWords, 'encoding', 'fileformat', 'filetype'}, - lualine_y = { { 'progress', left_padding=0 } }, - lualine_z = { { 'location', separator = { left = '', right = '' }, padding=0} } - }, - inactive_sections = { - lualine_a = {}, - lualine_b = {}, - lualine_c = {'filename'}, - lualine_x = {'location'}, - lualine_y = {}, - lualine_z = {} - }, - tabline = {}, - winbar = {}, - inactive_winbar = {}, - extensions = {} - } - end, -} diff --git a/nvim/lua/plugins/luasnip.lua b/nvim/lua/plugins/luasnip.lua deleted file mode 100755 index 92ddc01..0000000 --- a/nvim/lua/plugins/luasnip.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - 'L3MON4D3/LuaSnip', - -- config = function() - -- local luasnip = require('luasnip') - -- -- luasnip.setup({ - -- -- region_check_events = "CursorMoved", - -- -- delete_check_events = "TextChanged", - -- -- }) - -- - -- require("luasnip.loaders.from_vscode").load({paths = "~/.config/nvim/my_snippets"}) - -- end -} diff --git a/nvim/lua/plugins/markdown-preview.lua b/nvim/lua/plugins/markdown-preview.lua deleted file mode 100755 index f59ab53..0000000 --- a/nvim/lua/plugins/markdown-preview.lua +++ /dev/null @@ -1,17 +0,0 @@ -return { - -- literally the name, previews md in browser - "iamcco/markdown-preview.nvim", - cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" }, - ft = { "markdown" }, - build = function(plugin) - if vim.fn.executable "npx" then - vim.cmd("!cd " .. plugin.dir .. " && cd app && npx --yes yarn install") - else - vim.cmd [[Lazy load markdown-preview.nvim]] - vim.fn["mkdp#util#install"]() - end - end, - init = function() - if vim.fn.executable "npx" then vim.g.mkdp_filetypes = { "markdown" } end - end, -} diff --git a/nvim/lua/plugins/mason.lua b/nvim/lua/plugins/mason.lua deleted file mode 100755 index 222123d..0000000 --- a/nvim/lua/plugins/mason.lua +++ /dev/null @@ -1,41 +0,0 @@ -return { - -- lsp package manager - "williamboman/mason.nvim", - dependencies = { - "williamboman/mason-lspconfig.nvim", - }, - config = function() - -- import mason - local mason = require("mason") - - -- import mason-lspconfig - local mason_lspconfig = require("mason-lspconfig") - - -- enable mason and configure icons - mason.setup({ - ui = { - icons = { - package_installed = "✔", - package_pending = "➜", - package_uninstalled = "✗", - }, - }, - }) - - mason_lspconfig.setup({ - -- list of servers for mason to install - ensure_installed = { - -- "bashls", - -- "clangd", - -- "cssls", - -- "jdtls", - -- "lua_ls", - -- "pyright", - -- "tsserver", - "volar" - }, - -- auto-install configured servers (with lspconfig) - automatic_installation = true, - }) - end, -} diff --git a/nvim/lua/plugins/multicursors.lua b/nvim/lua/plugins/multicursors.lua deleted file mode 100755 index 3e7cadc..0000000 --- a/nvim/lua/plugins/multicursors.lua +++ /dev/null @@ -1,17 +0,0 @@ -return { - "smoka7/multicursors.nvim", - event = "VeryLazy", - dependencies = { - 'nvimtools/hydra.nvim', - }, - opts = {}, - cmd = { 'MCstart', 'MCvisual', 'MCclear', 'MCpattern', 'MCvisualPattern', 'MCunderCursor' }, - keys = { - { - mode = { 'v', 'n' }, - 'c', - 'MCstart', - desc = 'Create a selection for selected text or word under the cursor', - }, - }, -} diff --git a/nvim/lua/plugins/navbuddy.lua b/nvim/lua/plugins/navbuddy.lua deleted file mode 100755 index 74f3818..0000000 --- a/nvim/lua/plugins/navbuddy.lua +++ /dev/null @@ -1,146 +0,0 @@ -return { - "SmiteshP/nvim-navbuddy", - dependencies = { - "SmiteshP/nvim-navic", - "MunifTanjim/nui.nvim", - }, - opts = { lsp = { auto_attach = true } }, - config = function() - local actions = require("nvim-navbuddy.actions") - require("nvim-navbuddy").setup({ - window = { - border = "rounded", -- "rounded", "double", "solid", "none" - -- or an array with eight chars building up the border in a clockwise fashion - -- starting with the top-left corner. eg: { "╔", "═" ,"╗", "║", "╝", "═", "╚", "║" }. - size = "60%", -- Or table format example: { height = "40%", width = "100%"} - position = "50%", -- Or table format example: { row = "100%", col = "0%"} - scrolloff = nil, -- scrolloff value within navbuddy window - sections = { - left = { - size = "20%", - border = nil, -- You can set border style for each section individually as well. - }, - mid = { - size = "40%", - border = nil, - }, - right = { - -- No size option for right most section. It fills to - -- remaining area. - border = nil, - preview = "leaf", -- Right section can show previews too. - -- Options: "leaf", "always" or "never" - }, - }, - }, - node_markers = { - enabled = true, - icons = { - leaf = " ", - leaf_selected = " → ", - branch = " ", - }, - }, - icons = { - File = "󰈙 ", - Module = " ", - Namespace = "󰌗 ", - Package = " ", - Class = "󰌗 ", - Method = "󰆧 ", - Property = " ", - Field = " ", - Constructor = " ", - Enum = "󰕘", - Interface = "󰕘", - Function = "󰊕 ", - Variable = "󰆧 ", - Constant = "󰏿 ", - String = " ", - Number = "󰎠 ", - Boolean = "◩ ", - Array = "󰅪 ", - Object = "󰅩 ", - Key = "󰌋 ", - Null = "󰟢 ", - EnumMember = " ", - Struct = "󰌗 ", - Event = " ", - Operator = "󰆕 ", - TypeParameter = "󰊄 ", - }, - use_default_mappings = true, -- If set to false, only mappings set - -- by user are set. Else default - -- mappings are used for keys - -- that are not set by user - mappings = { - [""] = actions.close(), -- Close and cursor to original location - ["q"] = actions.close(), - - ["j"] = actions.next_sibling(), -- down - ["k"] = actions.previous_sibling(), -- up - - ["h"] = actions.parent(), -- Move to left panel - ["l"] = actions.children(), -- Move to right panel - ["0"] = actions.root(), -- Move to first panel - - [""] = actions.visual_name(), -- Visual selection of name - [""] = actions.visual_scope(), -- Visual selection of scope - - ["y"] = actions.yank_name(), -- Yank the name to system clipboard "+ - ["Y"] = actions.yank_scope(), -- Yank the scope to system clipboard "+ - - ["i"] = actions.insert_name(), -- Insert at start of name - ["I"] = actions.insert_scope(), -- Insert at start of scope - - ["a"] = actions.append_name(), -- Insert at end of name - ["A"] = actions.append_scope(), -- Insert at end of scope - - ["r"] = actions.rename(), -- Rename currently focused symbol - - ["d"] = actions.delete(), -- Delete scope - - ["f"] = actions.fold_create(), -- Create fold of current scope - ["F"] = actions.fold_delete(), -- Delete fold of current scope - - ["c"] = actions.comment(), -- Comment out current scope - - [""] = actions.select(), -- Goto selected symbol - ["o"] = actions.select(), - - ["J"] = actions.move_down(), -- Move focused node down - ["K"] = actions.move_up(), -- Move focused node up - - ["s"] = actions.toggle_preview(), -- Show preview of current node - - [""] = actions.vsplit(), -- Open selected node in a vertical split - [""] = actions.hsplit(), -- Open selected node in a horizontal split - - ["t"] = actions.telescope({ -- Fuzzy finder at current level. - layout_config = { -- All options that can be - height = 0.60, -- passed to telescope.nvim's - width = 0.60, -- default can be passed here. - prompt_position = "top", - preview_width = 0.50, - }, - layout_strategy = "horizontal", - }), - - ["g?"] = actions.help(), -- Open mappings help window - }, - lsp = { - auto_attach = true, -- If set to true, you don't need to manually use attach function - preference = nil, -- list of lsp server names in order of preference - }, - source_buffer = { - follow_node = true, -- Keep the current node in focus on the source buffer - highlight = true, -- Highlight the currently focused node - reorient = "smart", -- "smart", "top", "mid" or "none" - scrolloff = nil, -- scrolloff value when navbuddy is open - }, - custom_hl_group = nil, -- "Visual" or any other hl group to use instead of inverted colors - }) - - vim.keymap.set("n", "n", ":Navbuddy", { silent = true, desc = "open navbuddy menu" }) - end, -} diff --git a/nvim/lua/plugins/neotest.lua b/nvim/lua/plugins/neotest.lua deleted file mode 100755 index e5907ea..0000000 --- a/nvim/lua/plugins/neotest.lua +++ /dev/null @@ -1,70 +0,0 @@ --- plugins/neotest_config.lua -return { - -- Load neotest - { - "nvim-neotest/neotest", - dependencies = { - -- For JavaScript, TypeScript (Vite) - "marilari88/neotest-vitest", - -- For Python - "nvim-neotest/neotest-python", - -- For C, C++, Rust - "orjangj/neotest-ctest", - "rouge8/neotest-rust", - }, - config = function() - local neotest = require("neotest") - local keymap = vim.keymap.set - - -- General setup for neotest - neotest.setup({ - adapters = { - -- Vite Adapter for JavaScript/TypeScript - require("neotest-vitest"), - -- Python Adapter - require("neotest-python"), - -- C/C++ Adapter - require("neotest-ctest"), - -- Rust Adapter - require("neotest-rust"), - }, - }) - - -- Keybinding Setup - local opts = { noremap = true, silent = true } - - -- Run nearest test - opts.desc = "Run nearest test" - keymap("n", "tr", 'lua require("neotest").run.run()', opts) - - -- Run all tests in the current file - opts.desc = "Run all tests in current file" - keymap("n", "tf", 'lua require("neotest").run.run(vim.fn.expand("%"))', opts) - - -- Run all tests in the entire project - opts.desc = "Run all tests in project" - keymap("n", "ta", "Neotest run", opts) - - -- Stop running tests - opts.desc = "Stop tests" - keymap("n", "ts", "Neotest stop", opts) - - opts.desc = "Jump to next test" - keymap("n", "tn", "Neotest jump next", opts) - - opts.desc = "Jump to previous test" - keymap("n", "tp", "Neotest jump prev", opts) - - -- Show test summary - opts.desc = "Show neotest test summary" - keymap("n", "tv", "Neotest summary", opts) - - -- Toggle the Neotest panel - opts.desc = "Show neotest output" - keymap("n", "to", "Neotest output", opts) - - opts.desc = "Show neotest output as panel" - keymap("n", "tn", "Neotest output-panel", opts) - end, - }, -} diff --git a/nvim/lua/plugins/none-ls.lua b/nvim/lua/plugins/none-ls.lua deleted file mode 100755 index fe23323..0000000 --- a/nvim/lua/plugins/none-ls.lua +++ /dev/null @@ -1,15 +0,0 @@ -return { - "nvimtools/none-ls.nvim", - config = function() - local null_ls = require("null-ls") - - null_ls.setup({ - sources = { - null_ls.builtins.formatting.stylua, - null_ls.builtins.formatting.prettier, - null_ls.builtins.formatting.shfmt, - null_ls.builtins.formatting.black, - }, - }) - end, -} diff --git a/nvim/lua/plugins/nvim-tree.lua b/nvim/lua/plugins/nvim-tree.lua deleted file mode 100755 index 1fd5465..0000000 --- a/nvim/lua/plugins/nvim-tree.lua +++ /dev/null @@ -1,24 +0,0 @@ -return { - "nvim-tree/nvim-tree.lua", - version = "*", - lazy = false, - dependencies = { - "nvim-tree/nvim-web-devicons", - }, - config = function() - vim.g.loaded_netrw = 1 - vim.g.loaded_netrwPlugin = 1 - - require("nvim-tree").setup { - sort = { - folders_first = true, - sorter = "name" - }, - filters = { custom = { "^.git$" } } - } - - vim.keymap.set('n', 'e', ":NvimTreeToggle", {silent = true, desc = "Open nvim-tree"}) - vim.keymap.set('n', 'h', ":NvimTreeCollapseKeepBuffers", { silent = true, desc = "Collapse nvim-tree keeping open buffers" }) - vim.keymap.set('n', 'e', ":NvimTreeFindFile", {silent = true, desc = "Go to currently open file in buffer or close"}) - end, -} diff --git a/nvim/lua/plugins/startup.lua b/nvim/lua/plugins/startup.lua deleted file mode 100755 index ebb7a51..0000000 --- a/nvim/lua/plugins/startup.lua +++ /dev/null @@ -1,77 +0,0 @@ -return { - "startup-nvim/startup.nvim", - dependencies = { - "nvim-telescope/telescope.nvim", - "nvim-lua/plenary.nvim", - "nvim-telescope/telescope-file-browser.nvim", - }, - config = function() - require("startup").setup({ - title = { - type = "text", - align = "center", - content = { - [[]], - [[]], - [[]], - [[ ]], - [[ ██████ █████ █████ █████ ███ ]], - [[ ░░██████ ░░███ ░░███ ░░███ ░░░ ]], - [[ ░███░███ ░███ ██████ ██████ ░███ ░███ ████ █████████████ ]], - [[ ░███░░███░███ ███░░███ ███░░███ ░███ ░███ ░░███ ░░███░░███░░███ ]], - [[ ░███ ░░██████ ░███████ ░███ ░███ ░░███ ███ ░███ ░███ ░███ ░███ ]], - [[ ░███ ░░█████ ░███░░░ ░███ ░███ ░░░█████░ ░███ ░███ ░███ ░███ ]], - [[ █████ ░░█████░░██████ ░░██████ ░░███ █████ █████░███ █████ ]], - [[ ░░░░░ ░░░░░ ░░░░░░ ░░░░░░ ░░░ ░░░░░ ░░░░░ ░░░ ░░░░░ ]], - [[ ]], -}, - highlight = "String", - default_color = "#010155" - }, - - quotes = { - type = "text", - align = "center", - content = function () - local handle = io.popen("pwd") - if handle then - local cwd = handle:read("*l") - handle:close() - return {"Currently in " .. cwd} - else - return {"Error running command"} - end - end, - highlight = "String", - default_color = "#FFFFFF" - }, - - old = { - type = "oldfiles", - oldfiles_directory = true, - align = "center", - title = "Old files", - oldfiles_amount = 10, - highlight = "String", - default_color = "#FFFFFF", - content = "", - }, - - options = { - mapping_keys = false; - }, - - colors = { - background = "#000000", - folded_section = "#100000" - }, - - mappings = { - execute_command = "", - open_file = "", - }, - - parts = {"title", "quotes", "old"} - }) - end, -} diff --git a/nvim/lua/plugins/surround.lua b/nvim/lua/plugins/surround.lua deleted file mode 100755 index d4078fd..0000000 --- a/nvim/lua/plugins/surround.lua +++ /dev/null @@ -1,8 +0,0 @@ -return { - "kylechui/nvim-surround", - version = "*", - event = "VeryLazy", - config = function() - require("nvim-surround").setup() - end -} diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua deleted file mode 100755 index f97ef17..0000000 --- a/nvim/lua/plugins/telescope.lua +++ /dev/null @@ -1,87 +0,0 @@ -local actions = require('telescope.actions') -local action_state = require('telescope.actions.state') - --- Custom function for search and replace using Telescope --- test -function _G.search_and_replace() - local current_file = vim.fn.expand('%:p') - local query = vim.fn.input('Enter search pattern: ') - - -- Create the Telescope prompt with custom mappings - require('telescope.builtin').find_files({ - prompt_title = 'Search and Replace', - cwd = vim.loop.cwd(), - hidden = true, - attach_mappings = function(prompt_bufnr, map) - actions.select_default:replace(function() - local selection = action_state.get_selected_entry() - - -- Get the replace pattern from user - local replace_query = vim.fn.input('Replace with: ', '') - - if not replace_query == '' then - local args = { query, replace_query } - - -- Open a terminal buffer to run the search and replace command - require('telescope.builtin').terminal_job({ - cmd = { - 'sh', '-c', - string.format( - "grep -rl '%s' . | xargs sed -i 's/%s/%s/g'", - table.concat(args, "'"), - query, - replace_query - ) - }, - cwd = vim.fn.expand('%:p:h'), - }) - end - - return true - end) - - return true - end - }) -end - -return { - -- fuzzy finder - "nvim-telescope/telescope.nvim", - dependencies = { - "nvim-lua/plenary.nvim", - }, - config = function() - local builtin = require("telescope.builtin") - local actions = require("telescope.actions") - local opts = { silent = true } - - require("telescope").setup({ - defaults = { - mappings = { - i = { - [""] = actions.move_selection_next, - [""] = actions.move_selection_previous, - [""] = actions.send_selected_to_qflist + actions.open_qflist, -- TODO investigate - }, - }, - }, - }) - - opts.desc = "telescope find files" - vim.keymap.set("n", "ff", builtin.find_files, opts) - - opts.desc = "telescope live grep" - vim.keymap.set("n", "fg", builtin.live_grep, opts) - - opts.desc = "telescope buffers" - vim.keymap.set("n", "fb", builtin.buffers, opts) - - opts.desc = "telescope nvim functions" - vim.keymap.set("n", "fh", builtin.help_tags, opts) - - - -- Search and replace - - end, -} diff --git a/nvim/lua/plugins/toggleterm.lua b/nvim/lua/plugins/toggleterm.lua deleted file mode 100755 index e5d6478..0000000 --- a/nvim/lua/plugins/toggleterm.lua +++ /dev/null @@ -1,17 +0,0 @@ -return { - -- literally the name, quick term toggle - "akinsho/toggleterm.nvim", - version = "*", - config = function() - require("toggleterm").setup({ - insert_mappings = false, - terminal_mappings = false, - open_mapping = "t", - direction = "float", - float_opts = { - border = "curved", - }, - }) - vim.keymap.set("t", "", [[ToggleTerm]], {}) -- close terminal wih esc - end, -} diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua deleted file mode 100755 index 9aea9aa..0000000 --- a/nvim/lua/plugins/treesitter.lua +++ /dev/null @@ -1,26 +0,0 @@ -return { - -- syntax highlighting - "nvim-treesitter/nvim-treesitter", - build = ":TSUpdate", - config = function() - require("nvim-treesitter.configs").setup({ - ensure_installed = { - "bash", - "c", - "cpp", - "hyprlang", - "javascript", - "json", - "lua", - "python", - "typescript", - }, - sync_install = false, - - highlight = { - enable = true, - disable = { "tex" } - }, - }) - end, -} diff --git a/nvim/lua/plugins/typescript-tools.lua b/nvim/lua/plugins/typescript-tools.lua deleted file mode 100755 index 03f4945..0000000 --- a/nvim/lua/plugins/typescript-tools.lua +++ /dev/null @@ -1,30 +0,0 @@ -return { - 'pmizio/typescript-tools.nvim', - dependencies = { 'nvim-lua/plenary.nvim', 'neovim/nvim-lspconfig' }, - opts = {}, - ft = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'vue' }, - config = function() - require('typescript-tools').setup { - on_attach = function(client, bufnr) - client.server_capabilities.documentFormattingProvider = false - client.server_capabilities.documentRangeFormattingProvider = false - end, - filetypes = { - 'javascript', - 'javascriptreact', - 'typescript', - 'typescriptreact', - 'vue', - }, - settings = { - tsserver_plugins = { - '@vue/typescript-plugin', - }, - jsx_close_tag = { - enable = true, - filetypes = { 'javascriptreact', 'typescriptreact' }, - }, - }, - } - end, -} diff --git a/nvim/lua/plugins/vimtex.lua b/nvim/lua/plugins/vimtex.lua deleted file mode 100755 index cb59ac3..0000000 --- a/nvim/lua/plugins/vimtex.lua +++ /dev/null @@ -1,15 +0,0 @@ -return { - "lervag/vimtex", - config = function() - -- vimtex settings - -- vim.g.vimtex_view_method = 'startup' -- PDF viewer (example: zathura, or use 'skim' for macOS) - vim.g.vimtex_compiler_method = 'latexmk' -- Use latexmk for compilation - vim.g.vimtex_fold_enabled = 1 -- Enable folding for LaTeX sections - vim.g.vimtex_quickfix_mode = 0 -- Disable quickfix mode for compilation errors - -- Key Mappings for LaTeX workflow - vim.api.nvim_set_keymap('n', 'lc', ':VimtexCompile', {}) -- Compile LaTeX file - vim.api.nvim_set_keymap('n', 'lv', ':VimtexView', {}) -- View compiled PDF - vim.api.nvim_set_keymap('n', 'lq', ':VimtexStop', {}) -- Stop compilation - - end -} diff --git a/nvim/lua/plugins/whichkey.lua b/nvim/lua/plugins/whichkey.lua deleted file mode 100755 index 0b2f878..0000000 --- a/nvim/lua/plugins/whichkey.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - -- keybinds popup - "folke/which-key.nvim", - event = "VeryLazy", - init = function() - vim.o.timeout = true - vim.o.timeoutlen = 500 - end, - opts = { - - } -} diff --git a/nvim/lua/plugins/zen-mode.lua b/nvim/lua/plugins/zen-mode.lua deleted file mode 100755 index 6f6be9e..0000000 --- a/nvim/lua/plugins/zen-mode.lua +++ /dev/null @@ -1,14 +0,0 @@ -return { - -- view buffer w/o distractions - "folke/zen-mode.nvim", - config = function() - require("zen-mode").setup({ - window = { - width = 1, - height = 1, - }, - }) - - vim.keymap.set("n", "z", ":ZenMode", { silent = true, desc = "open current buffer in zen mode" }) - end, -}