master
blob42 8 months ago
parent ecdf0344ff
commit e604b2aaa5

@ -0,0 +1 @@
cnoremap R! !ruff --fix %<CR>

@ -3,3 +3,5 @@ Abolish place{ho,h}ler{} placeholder
Abolish improt import
Abolish flase false
Abolish optinoal optional
Abolish n{O}ne none
Abolish n{O}ne none

@ -8,7 +8,7 @@ local M = {}
local config = {
panel = {
enabled = false,
enabled = true,
auto_refresh = false,
keymap = {
jump_prev = "[[",
@ -23,16 +23,16 @@ local config = {
},
},
suggestion = {
enabled = false,
enabled = true,
auto_trigger = false,
debounce = 75,
keymap = {
accept = "<M-l>",
accept = "<M-j>",
accept_word = false,
accept_line = false,
next = "<M-]>",
prev = "<M-[>",
dismiss = "<C-]>",
next = "<M-Right>",
prev = "<M-Left>",
dismiss = "<M-Down>",
},
},
filetypes = {

@ -15,7 +15,15 @@ local config = {
runtime = true, -- runtime path
types = true, -- full signature, docs and completion of vim.api, vim.treesitter, vim.lsp and others
-- plugins = true, -- installed opt or start plugins in packpath
plugins = {"plenary.nvim", "grapple.nvim", "nvim-dap", "nvchad_ui", "base46", "colorbuddy.nvim"},
plugins = {
"plenary.nvim",
"grapple.nvim",
"nvim-dap",
"nvchad_ui",
"base46",
"colorbuddy.nvim",
"navigator.lua"
},
-- -- plugins = {"navigator.lua", "guihua.lua", "go.nvim", "plenary.nvim"},
-- you can also specify the list of plugins to make available as a workspace library
-- plugins = { "nvim-treesitter", "plenary.nvim", "telescope.nvim" },

@ -1,5 +1,5 @@
local ok, null_ls = pcall(require, 'null-ls')
if not ok then
if not ok then
vim.notify("missing module null-ls", vim.log.levels.WARN)
return
end
@ -63,7 +63,7 @@ M.config = {
}
M.setup = function()
null_ls.setup(M.config)
null_ls.setup(M.config)
end

@ -8,7 +8,7 @@ local M = {}
local config = {
project_dir = "~/.config/nvim-project-confs/", -- trailing slash important
selint = false,
silent = false,
}
M.setup = function()

@ -122,12 +122,12 @@ return {
end
}, -- }}}
["zbirenbaum/copilot-cmp"] = {
after = {"copilot.lua"},
config = function()
require("copilot_cmp").setup()
end
},
-- ["zbirenbaum/copilot-cmp"] = {
-- after = {"copilot.lua"},
-- config = function()
-- require("copilot_cmp").setup()
-- end
-- },
-- Code Refactoring
@ -239,11 +239,7 @@ return {
-- vim templates
["https://codeberg.org/jgoguen/tmpl.vim"] = {
setup = function()
end
},
["https://codeberg.org/jgoguen/tmpl.vim"] = {},
-- }}}

@ -168,13 +168,13 @@ local options = {
priority = 700,
group_index = 2,
},
{ name = "copilot", priority = 100, group_index = 2 },
-- { name = "copilot", priority = 100, group_index = 2 },
{ name = "path", group_index = 2 },
},
sorting = {
priority_weight = 2,
comparators = {
require("copilot_cmp.comparators").prioritize,
-- require("copilot_cmp.comparators").prioritize,
-- Below is the default comparitor list and order for nvim-cmp
cmp.config.compare.offset,

Loading…
Cancel
Save