diff --git a/.config/nvim/lua/core/commands.lua b/.config/nvim/lua/core/commands.lua index 6614fc5..0cc56fc 100644 --- a/.config/nvim/lua/core/commands.lua +++ b/.config/nvim/lua/core/commands.lua @@ -24,3 +24,6 @@ vim.api.nvim_create_user_command("ClearBuffers", function() vim.cmd('%bd|e#|bd#') end, {}) +vim.api.nvim_create_user_command("CopyFilename", function() + vim.cmd('let @+ = expand("%")') +end, {}) diff --git a/.config/nvim/lua/core/options.lua b/.config/nvim/lua/core/options.lua index 3f5f6fe..dee495d 100644 --- a/.config/nvim/lua/core/options.lua +++ b/.config/nvim/lua/core/options.lua @@ -45,3 +45,7 @@ vim.opt.splitright = true vim.opt.diffopt:append('vertical') vim.opt.termguicolors = true + +if vim.fn.has("nvim-0.8") == 1 then + vim.opt.cmdheight = 0 +end diff --git a/.config/nvim/lua/core/remaps.lua b/.config/nvim/lua/core/remaps.lua index 38b5293..f2c7bfe 100644 --- a/.config/nvim/lua/core/remaps.lua +++ b/.config/nvim/lua/core/remaps.lua @@ -40,8 +40,8 @@ vim.keymap.set("n", "n", "nzzzv", { desc = "Next search result" }) vim.keymap.set("n", "N", "Nzzzv", { desc = "Previous search result" }) -- Keep cursor centered when jumping through quickfix list -vim.keymap.set("n", "K", "cprevzz", { desc = "Previous item in quickfix list" }) -vim.keymap.set("n", "J", "cnextzz", { desc = "Next item in quickfix list" }) +vim.keymap.set("n", "N", "cprevzz", { desc = "Previous item in quickfix list" }) +vim.keymap.set("n", "n", "cnextzz", { desc = "Next item in quickfix list" }) -- Easily run global search and replace vim.keymap.set( diff --git a/.config/nvim/lua/plugins/carbon-now.lua b/.config/nvim/lua/plugins/carbon-now.lua deleted file mode 100644 index 8daf112..0000000 --- a/.config/nvim/lua/plugins/carbon-now.lua +++ /dev/null @@ -1,25 +0,0 @@ -return { - "ellisonleao/carbon-now.nvim", - lazy = true, - cmd = "CarbonNow", - ---@param opts cn.ConfigSchema - opts = { - base_url = "https://carbon.now.sh/", - options = { - drop_shadow_blur = "68px", - drop_shadow = false, - drop_shadow_offset_y = "20px", - font_family = "Hack", - font_size = "18px", - line_height = "133%", - line_numbers = true, - theme = "monokai", - titlebar = "NeoVim", - watermark = false, - width = "680", - window_theme = "sharp", - padding_horizontal = "0px", - padding_vertical = "0px", - }, - } -} diff --git a/.config/nvim/lua/plugins/cmp.lua b/.config/nvim/lua/plugins/cmp.lua index 8450236..09c8a6c 100644 --- a/.config/nvim/lua/plugins/cmp.lua +++ b/.config/nvim/lua/plugins/cmp.lua @@ -18,92 +18,6 @@ return { '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, - }, }, },