aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/coding.lua
diff options
context:
space:
mode:
authordelta <darkussdelta@gmail.com>2025-10-29 16:35:38 +0100
committerdelta <darkussdelta@gmail.com>2025-10-29 16:35:38 +0100
commitd7c66522cf365f516babcfeb1d4a2d36c3ea41af (patch)
tree30c7d6103037b31170ae6d8fd58e3849e3cea823 /.config/nvim/lua/plugins/coding.lua
parentdf418700b7d776f03ee5b58daa2d497cddb45aca (diff)
a small refactor
Diffstat (limited to '.config/nvim/lua/plugins/coding.lua')
-rw-r--r--.config/nvim/lua/plugins/coding.lua150
1 files changed, 0 insertions, 150 deletions
diff --git a/.config/nvim/lua/plugins/coding.lua b/.config/nvim/lua/plugins/coding.lua
deleted file mode 100644
index fd636fa..0000000
--- a/.config/nvim/lua/plugins/coding.lua
+++ /dev/null
@@ -1,150 +0,0 @@
-return {
- -- { "echasnovski/mini.move", config = true },
- { "echasnovski/mini.comment", config = true },
- { "max397574/better-escape.nvim", config = true },
- {
- "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
- local configs = require "nvim-treesitter.configs"
- configs.setup {
- ensure_installed = {
- "lua",
- "c",
- "vim",
- "vimdoc",
- "query",
- "rust",
- "fish",
- "json",
- "javascript",
- "latex",
- "markdown",
- "markdown_inline",
- "zig",
- "typescript",
- "toml",
- "svelte",
- "comment",
- "html",
- "typst",
- "ron"
- },
- highlight = { enable = true },
- indent = { enable = true },
- }
- end,
- },
- {
- "ggandor/leap.nvim",
- config = function()
- local leap = require "leap"
- leap.add_default_mappings()
- leap.opts.highlight_unlabeled_phase_one_targets = true
- end,
- dependencies = {
- "tpope/vim-repeat",
- },
- },
- {
- "hrsh7th/nvim-cmp",
- opts = function()
- vim.api.nvim_set_hl(0, "CmpGhostText", { link = "Comment", default = true })
- local cmp = require "cmp"
- local defaults = require "cmp.config.default"()
- return {
- enabled = function()
- local context = require "cmp.config.context"
- if vim.api.nvim_get_mode().mode == "c" then
- return true
- else
- return not context.in_treesitter_capture "comment" and not context.in_syntax_group "Comment"
- end
- end,
-
- completion = {
- completeopt = "menu,menuone,noinsert",
- },
- snippet = {
- expand = function(args)
- require("luasnip").lsp_expand(args.body)
- end,
- },
- window = {
- completion = cmp.config.window.bordered(),
- documentation = cmp.config.window.bordered(),
- },
- mapping = cmp.mapping.preset.insert {
- ["<C-j>"] = cmp.mapping.select_next_item { behavior = cmp.SelectBehavior.Insert },
- ["<C-k>"] = cmp.mapping.select_prev_item { behavior = cmp.SelectBehavior.Insert },
- ["<C-b>"] = cmp.mapping.scroll_docs(-4),
- ["<C-f>"] = cmp.mapping.scroll_docs(4),
- ["<S-CR>"] = cmp.mapping.abort(),
- ["<CR>"] = cmp.mapping.confirm { select = false },
- },
- sources = cmp.config.sources {
- { name = "nvim_lsp" },
- { name = "path" },
- },
- formatting = {
- format = function(_, item)
- local icons = require("icons").kinds
- if icons[item.kind] then
- item.kind = icons[item.kind] .. item.kind
- end
- return item
- end,
- },
- experimental = {
- ghost_text = {
- hl_group = "CmpGhostText",
- },
- },
- sorting = defaults.sorting,
- }
- end,
- dependencies = {
- { "L3MON4D3/LuaSnip", build = "make install_jsregexp" },
- "hrsh7th/cmp-path",
- "saadparwaiz1/cmp_luasnip",
- },
- disabled = true
- },
- {
- "NvChad/nvim-colorizer.lua",
- opts = {
- user_default_options = { RGB = true, RRGGBB = true, RRGGBBAA = true, always_update = true, names = false },
- },
- },
- {
- "echasnovski/mini.surround",
- version = false,
- opts = {
- mappings = {
- add = "\\a", -- Add surrounding in Normal and Visual modes
- delete = "\\d", -- Delete surrounding
- find = "\\f", -- Find surrounding (to the right)
- find_left = "\\F", -- Find surrounding (to the left)
- highlight = "\\h", -- Highlight surrounding
- replace = "\\r", -- Replace surrounding
- update_n_lines = "\\n", -- Update `n_lines`
- }
- }
- },
- {
- "color_converter",
- dev = true,
- dependencies = {
- { 'echasnovski/mini.colors', version = '*' },
- "MunifTanjim/nui.nvim",
- },
- -- lazy = false,
- cmd = "ColorConverter",
- config = true
- },
- -- {
- -- "m4xshen/hardtime.nvim",
- -- config = true,
- -- disabled = true
- -- }
-}