From 512c06c0539622f85fd89d1992b75710e6316399 Mon Sep 17 00:00:00 2001 From: Tovi Jaeschke-Rogers Date: Mon, 24 Feb 2025 14:04:18 +1030 Subject: [PATCH] wip: fix the things --- .config/nvim/lua/core/autocmd.lua | 9 --- .config/nvim/lua/plugins/cmp.lua | 95 ++++++++++++++++++++++++++++++- .local/bin/dwm-autostart | 2 +- 3 files changed, 95 insertions(+), 11 deletions(-) diff --git a/.config/nvim/lua/core/autocmd.lua b/.config/nvim/lua/core/autocmd.lua index 0ebc951..a47a043 100644 --- a/.config/nvim/lua/core/autocmd.lua +++ b/.config/nvim/lua/core/autocmd.lua @@ -51,15 +51,6 @@ local aucmd_dict = { }, BufRead = { - { - -- Return cursor to where it was previously when re-opening a file - callback = function() - if vim.fn.expand('%:p') ~= '.git/COMMIT_EDITMSG' and vim.fn.line("'\"") > 1 and vim.fn.line("'\"") <= vim.fn.line("$") then - vim.cmd("normal! g`\"") - end - end - }, - { -- Set syntax for Dockerfiles pattern = { '*.docker' }, diff --git a/.config/nvim/lua/plugins/cmp.lua b/.config/nvim/lua/plugins/cmp.lua index 46c0b96..8a160ff 100644 --- a/.config/nvim/lua/plugins/cmp.lua +++ b/.config/nvim/lua/plugins/cmp.lua @@ -2,6 +2,7 @@ return { 'saghen/blink.cmp', dependencies = { 'rafamadriz/friendly-snippets', + 'mikavilpas/blink-ripgrep.nvim', }, version = 'v0.*', @@ -12,7 +13,99 @@ return { }, sources = { - default = { 'lsp', 'path', 'snippets', 'buffer' }, + default = { + 'lsp', + 'path', + 'snippets', + 'buffer', + 'ripgrep', + }, + + providers = { + ripgrep = { + module = "blink-ripgrep", + name = "Ripgrep", + -- the options below are optional, some default values are shown + ---@module "blink-ripgrep" + ---@type blink-ripgrep.Options + opts = { + -- For many options, see `rg --help` for an exact description of + -- the values that ripgrep expects. + + -- the minimum length of the current word to start searching + -- (if the word is shorter than this, the search will not start) + prefix_min_len = 3, + + -- The number of lines to show around each match in the preview + -- (documentation) window. For example, 5 means to show 5 lines + -- before, then the match, and another 5 lines after the match. + context_size = 5, + + -- The maximum file size of a file that ripgrep should include in + -- its search. Useful when your project contains large files that + -- might cause performance issues. + -- Examples: + -- "1024" (bytes by default), "200K", "1M", "1G", which will + -- exclude files larger than that size. + max_filesize = "1M", + + -- Specifies how to find the root of the project where the ripgrep + -- search will start from. Accepts the same options as the marker + -- given to `:h vim.fs.root()` which offers many possibilities for + -- configuration. If none can be found, defaults to Neovim's cwd. + -- + -- Examples: + -- - ".git" (default) + -- - { ".git", "package.json", ".root" } + project_root_marker = ".git", + + -- The casing to use for the search in a format that ripgrep + -- accepts. Defaults to "--ignore-case". See `rg --help` for all the + -- available options ripgrep supports, but you can try + -- "--case-sensitive" or "--smart-case". + search_casing = "--ignore-case", + + -- (advanced) Any additional options you want to give to ripgrep. + -- See `rg -h` for a list of all available options. Might be + -- helpful in adjusting performance in specific situations. + -- If you have an idea for a default, please open an issue! + -- + -- Not everything will work (obviously). + additional_rg_options = {}, + + -- When a result is found for a file whose filetype does not have a + -- treesitter parser installed, fall back to regex based highlighting + -- that is bundled in Neovim. + fallback_to_regex_highlighting = true, + + -- Absolute root paths where the rg command will not be executed. + -- Usually you want to exclude paths using gitignore files or + -- ripgrep specific ignore files, but this can be used to only + -- ignore the paths in blink-ripgrep.nvim, maintaining the ability + -- to use ripgrep for those paths on the command line. If you need + -- to find out where the searches are executed, enable `debug` and + -- look at `:messages`. + ignore_paths = {}, + + -- Show debug information in `:messages` that can help in + -- diagnosing issues with the plugin. + debug = false, + }, + -- (optional) customize how the results are displayed. Many options + -- are available - make sure your lua LSP is set up so you get + -- autocompletion help + transform_items = function(_, items) + for _, item in ipairs(items) do + -- example: append a description to easily distinguish rg results + item.labelDetails = { + description = "(rg)", + } + end + return items + end, + }, + }, + }, signature = { enabled = true, diff --git a/.local/bin/dwm-autostart b/.local/bin/dwm-autostart index 8ce3167..470ea12 100755 --- a/.local/bin/dwm-autostart +++ b/.local/bin/dwm-autostart @@ -7,4 +7,4 @@ xsetroot -solid "#1A1A22" # ~/.local/bin/setbg # nohup /usr/lib/kdeconnectd >/dev/null 2>&1 & -dwmblocks & +nohup dwmblocks &