Browse Source

wip: updates to nvim config

master
Tovi Jaeschke-Rogers 4 weeks ago
parent
commit
d7b4e2dea9
5 changed files with 9 additions and 113 deletions
  1. +3
    -0
      .config/nvim/lua/core/commands.lua
  2. +4
    -0
      .config/nvim/lua/core/options.lua
  3. +2
    -2
      .config/nvim/lua/core/remaps.lua
  4. +0
    -25
      .config/nvim/lua/plugins/carbon-now.lua
  5. +0
    -86
      .config/nvim/lua/plugins/cmp.lua

+ 3
- 0
.config/nvim/lua/core/commands.lua View File

@ -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, {})

+ 4
- 0
.config/nvim/lua/core/options.lua View File

@ -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

+ 2
- 2
.config/nvim/lua/core/remaps.lua View File

@ -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", "<leader>K", "<cmd>cprev<CR>zz", { desc = "Previous item in quickfix list" })
vim.keymap.set("n", "<leader>J", "<cmd>cnext<CR>zz", { desc = "Next item in quickfix list" })
vim.keymap.set("n", "<leader>N", "<cmd>cprev<CR>zz", { desc = "Previous item in quickfix list" })
vim.keymap.set("n", "<leader>n", "<cmd>cnext<CR>zz", { desc = "Next item in quickfix list" })
-- Easily run global search and replace
vim.keymap.set(


+ 0
- 25
.config/nvim/lua/plugins/carbon-now.lua View File

@ -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",
},
}
}

+ 0
- 86
.config/nvim/lua/plugins/cmp.lua View File

@ -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,
},
},
},


Loading…
Cancel
Save