summaryrefslogtreecommitdiff
path: root/ar/.config/NvChad/lua/custom
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.config/NvChad/lua/custom')
-rw-r--r--ar/.config/NvChad/lua/custom/README.md3
-rw-r--r--ar/.config/NvChad/lua/custom/chadrc.lua54
-rw-r--r--ar/.config/NvChad/lua/custom/configs/cell_marker.lua159
-rw-r--r--ar/.config/NvChad/lua/custom/configs/dadbod.lua29
-rw-r--r--ar/.config/NvChad/lua/custom/configs/lspconfig.lua71
-rw-r--r--ar/.config/NvChad/lua/custom/configs/null-ls.lua45
-rw-r--r--ar/.config/NvChad/lua/custom/configs/overrides.lua247
-rw-r--r--ar/.config/NvChad/lua/custom/highlights.lua21
-rw-r--r--ar/.config/NvChad/lua/custom/init.lua55
-rw-r--r--ar/.config/NvChad/lua/custom/mappings.lua740
-rw-r--r--ar/.config/NvChad/lua/custom/plugins.lua862
11 files changed, 0 insertions, 2286 deletions
diff --git a/ar/.config/NvChad/lua/custom/README.md b/ar/.config/NvChad/lua/custom/README.md
deleted file mode 100644
index 0cc616c..0000000
--- a/ar/.config/NvChad/lua/custom/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Example_config
-
-This can be used as an example custom config for NvChad. Do check the https://github.com/NvChad/nvcommunity
diff --git a/ar/.config/NvChad/lua/custom/chadrc.lua b/ar/.config/NvChad/lua/custom/chadrc.lua
deleted file mode 100644
index 598bc65..0000000
--- a/ar/.config/NvChad/lua/custom/chadrc.lua
+++ /dev/null
@@ -1,54 +0,0 @@
----@type ChadrcConfig
-local M = {}
-
--- Path to overriding theme and highlights files
-local highlights = require "custom.highlights"
-
-M.ui = {
- -- theme
- theme = "catppuccin",
- theme_toggle = { "catppuccin", "everblush" },
- transparency = true,
-
- -- highlights
- hl_override = highlights.override,
- hl_add = highlights.add,
-
- -- Nvdash
- nvdash = {
- load_on_startup = false,
-
- header = {
- " ",
- " ██████╗ ██████╗ ██████╗ ███████ ",
- " ██╔════╝██╔═══██╗██╔══██╗██╔════╝ ",
- " ██║ ██║ ██║██║ ██║█████╗ ",
- " ██║ ██║ ██║██║ ██║██╔══╝ ",
- " ╚██████╗╚██████╔╝██████╔╝███████╗ ",
- " ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝ ",
- },
-
- buttons = {
- { "󰺯 Find File", "Spc f f", "Telescope find_files" },
- { "󱋡 Recent Files", "Spc f o", "Telescope oldfiles" },
- { "󱩾 Find Word", "Spc f w", "Telescope live_grep" },
- { "󰃀 Bookmarks", "Spc m a", "Telescope marks" },
- { "󰏘 Themes", "Spc t h", "Telescope themes" },
- { "󰌌 Mappings", "Spc c h", "NvCheatsheet" },
- },
- },
-
- -- status line
- statusline = {
- theme = "minimal",
- separator_style = "block",
- overriden_modules = nil,
- },
-}
-
-M.plugins = "custom.plugins"
-
--- check core.mappings for table structure
-M.mappings = require "custom.mappings"
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/configs/cell_marker.lua b/ar/.config/NvChad/lua/custom/configs/cell_marker.lua
deleted file mode 100644
index 1d71dfb..0000000
--- a/ar/.config/NvChad/lua/custom/configs/cell_marker.lua
+++ /dev/null
@@ -1,159 +0,0 @@
-local M = {}
-
-M.get_commenter = function()
- local commenter = { python = "# ", lua = "-- ", julia = "# ", fennel = ";; ", scala = "// ", r = "# " }
- local bufnr = vim.api.nvim_get_current_buf()
- local ft = vim.api.nvim_buf_get_option(bufnr, "filetype")
- if ft == nil or ft == "" then
- return commenter["python"]
- elseif commenter[ft] == nil then
- return commenter["python"]
- end
-
- return commenter[ft]
-end
-
-local CELL_MARKER = M.get_commenter() .. "%%"
-vim.api.nvim_set_hl(0, "CellMarkerHl", { default = true, bg = "#c5c5c5", fg = "#111111" })
-
-M.miniai_spec = function(mode)
- local start_line = vim.fn.search("^" .. CELL_MARKER, "bcnW")
-
- if start_line == 0 then
- start_line = 1
- else
- if mode == "i" then
- start_line = start_line + 1
- end
- end
-
- local end_line = vim.fn.search("^" .. CELL_MARKER, "nW") - 1
- if end_line == -1 then
- end_line = vim.fn.line "$"
- end
-
- local last_col = math.max(vim.fn.getline(end_line):len(), 1)
-
- local from = { line = start_line, col = 1 }
- local to = { line = end_line, col = last_col }
-
- return { from = from, to = to }
-end
-
-M.show_cell_markers = function()
- require("mini.hipatterns").enable(0, {
- highlighters = {
- marker = { pattern = "^" .. M.get_commenter() .. "%%%%", group = "CellMarkerHl" },
- },
- })
-end
-
-M.select_cell = function()
- local bufnr = vim.api.nvim_get_current_buf()
- local current_row = vim.api.nvim_win_get_cursor(0)[1]
- local current_col = vim.api.nvim_win_get_cursor(0)[2]
-
- local start_line = nil
- local end_line = nil
-
- for line = current_row, 1, -1 do
- local line_content = vim.api.nvim_buf_get_lines(bufnr, line - 1, line, false)[1]
- if line_content:find("^" .. CELL_MARKER) then
- start_line = line
- break
- end
- end
- local line_count = vim.api.nvim_buf_line_count(bufnr)
- for line = current_row + 1, line_count do
- local line_content = vim.api.nvim_buf_get_lines(bufnr, line - 1, line, false)[1]
- if line_content:find("^" .. CELL_MARKER) then
- end_line = line
- break
- end
- end
-
- if not start_line then
- start_line = 1
- end
- if not end_line then
- end_line = line_count
- end
- return current_row, current_col, start_line, end_line
-end
-
-M.execute_cell = function()
- local current_row, current_col, start_line, end_line = M.select_cell()
- if start_line and end_line then
- vim.fn.setpos("'<", { 0, start_line + 1, 0, 0 })
- vim.fn.setpos("'>", { 0, end_line - 1, 0, 0 })
- require("iron.core").visual_send()
- vim.api.nvim_win_set_cursor(0, { current_row, current_col })
- end
-end
-
-M.delete_cell = function()
- local _, _, start_line, end_line = M.select_cell()
- if start_line and end_line then
- local rows_to_select = end_line - start_line - 1
- vim.api.nvim_win_set_cursor(0, { start_line, 0 })
- vim.cmd("normal!V " .. rows_to_select .. "j")
- vim.cmd "normal!d"
- vim.cmd "normal!k"
- end
-end
-
-M.navigate_cell = function(up)
- local is_up = up or false
- local _, _, start_line, end_line = M.select_cell()
- if is_up and start_line ~= 1 then
- vim.api.nvim_win_set_cursor(0, { start_line - 1, 0 })
- elseif end_line then
- local bufnr = vim.api.nvim_get_current_buf()
- local line_count = vim.api.nvim_buf_line_count(bufnr)
- if end_line ~= line_count then
- vim.api.nvim_win_set_cursor(0, { end_line + 1, 0 })
- _, _, start_line, end_line = M.select_cell()
- vim.api.nvim_win_set_cursor(0, { end_line - 1, 0 })
- end
- end
-end
-
-M.move_cell = function(dir)
- local search_res
- local result
- if dir == "d" then
- search_res = vim.fn.search("^" .. CELL_MARKER, "W")
- if search_res == 0 then
- result = "last"
- end
- else
- search_res = vim.fn.search("^" .. CELL_MARKER, "bW")
- if search_res == 0 then
- result = "first"
- vim.api.nvim_win_set_cursor(0, { 1, 0 })
- end
- end
-
- return result
-end
-
-M.insert_cell_before = function(content)
- content = content or CELL_MARKER
- local cell_object = M.miniai_spec "a"
- vim.api.nvim_buf_set_lines(0, cell_object.from.line - 1, cell_object.from.line - 1, false, { content, "" })
- M.move_cell "u"
-end
-
-M.insert_cell_after = function(content)
- content = content or CELL_MARKER
- vim.print(content)
- local cell_object = M.miniai_spec "a"
- vim.api.nvim_buf_set_lines(0, cell_object.to.line, cell_object.to.line, false, { content, "" })
- M.move_cell "d"
-end
-
-M.insert_markdown_cell = function()
- M.insert_cell_after(CELL_MARKER .. " [markdown]")
-end
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/configs/dadbod.lua b/ar/.config/NvChad/lua/custom/configs/dadbod.lua
deleted file mode 100644
index 90c13fb..0000000
--- a/ar/.config/NvChad/lua/custom/configs/dadbod.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-local M = {}
-
-local function db_completion()
- require("cmp").setup.buffer { sources = { { name = "vim-dadbod-completion" } } }
-end
-
-function M.setup()
- vim.g.db_ui_save_location = vim.fn.stdpath "config" .. require("plenary.path").path.sep .. "db_ui"
-
- vim.api.nvim_create_autocmd("FileType", {
- pattern = {
- "sql",
- },
- command = [[setlocal omnifunc=vim_dadbod_completion#omni]],
- })
-
- vim.api.nvim_create_autocmd("FileType", {
- pattern = {
- "sql",
- "mysql",
- "plsql",
- },
- callback = function()
- vim.schedule(db_completion)
- end,
- })
-end
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/configs/lspconfig.lua b/ar/.config/NvChad/lua/custom/configs/lspconfig.lua
deleted file mode 100644
index c4fd1db..0000000
--- a/ar/.config/NvChad/lua/custom/configs/lspconfig.lua
+++ /dev/null
@@ -1,71 +0,0 @@
-local on_attach = require("plugins.configs.lspconfig").on_attach
-local capabilities = require("plugins.configs.lspconfig").capabilities
-
-local lspconfig = require "lspconfig"
-
--- if you just want default config for the servers then put them in a table
-local servers = { "clangd", "cssls", "emmet_language_server", "html", "julials", "sqlls", "tsserver" }
-
-for _, lsp in ipairs(servers) do
- lspconfig[lsp].setup {
- on_attach = on_attach,
- capabilities = capabilities,
- }
-end
-
---
--- lspconfig.pyright.setup { blabla}
-local on_attach_qmd = function(client, bufnr)
- local function buf_set_keymap(...)
- vim.api.nvim_buf_set_keymap(bufnr, ...)
- end
- local function buf_set_option(...)
- vim.api.nvim_buf_set_option(bufnr, ...)
- end
-
- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
- local opts = { noremap = true, silent = true }
-end
-
-local lsp_flags = {
- allow_incremental_sync = true,
- debounce_text_changes = 150,
-}
-
-local cmp_nvim_lsp = require "cmp_nvim_lsp"
-local util = require "lspconfig.util"
-
-lspconfig.marksman.setup {
- on_attach = on_attach_qmd,
- capabilities = capabilities,
- filetypes = { "markdown", "quarto" },
- root_dir = util.root_pattern(".git", ".marksman.toml", "_quarto.yml"),
-}
-
--- lspconfig.r_language_server.setup {
--- on_attach = on_attach,
--- capabilities = capabilities,
--- flags = lsp_flags,
--- settings = {
--- r = {
--- lsp = {
--- rich_documentation = false,
--- },
--- },
--- },
--- }
-
-lspconfig.yamlls.setup {
- on_attach = on_attach,
- capabilities = capabilities,
- flags = lsp_flags,
- settings = {
- yaml = {
- schemas = {
- -- add custom schemas here
- -- e.g.
- ["https://raw.githubusercontent.com/hits-mbm-dev/kimmdy/main/src/kimmdy/kimmdy-yaml-schema.json"] = "kimmdy.yml",
- },
- },
- },
-}
diff --git a/ar/.config/NvChad/lua/custom/configs/null-ls.lua b/ar/.config/NvChad/lua/custom/configs/null-ls.lua
deleted file mode 100644
index d703736..0000000
--- a/ar/.config/NvChad/lua/custom/configs/null-ls.lua
+++ /dev/null
@@ -1,45 +0,0 @@
-local null_ls = require "null-ls"
-local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
-
-local b = null_ls.builtins
-
-local sources = {
- -- cpp
- b.formatting.clang_format,
-
- -- Lua
- b.formatting.stylua,
-
- -- python
- b.code_actions.refactoring,
- b.diagnostics.mypy,
- b.diagnostics.ruff,
- b.diagnostics.vulture,
- b.formatting.black,
- -- b.formatting.pyflyby,
- -- b.formatting.reorder_python_imports,
-
- -- webdev stuff
- b.formatting.deno_fmt, -- choosed deno for ts/js files cuz its very fast!
- b.formatting.prettier.with { filetypes = { "html", "markdown", "css" } }, -- so prettier works only on these filetypes
-}
-
-null_ls.setup {
- debug = true,
- sources = sources,
- on_attach = function(client, bufnr)
- if client.supports_method "textDocument/formatting" then
- vim.api.nvim_clear_autocmds {
- group = augroup,
- buffer = bufnr,
- }
- vim.api.nvim_create_autocmd("BufWritePre", {
- group = augroup,
- buffer = bufnr,
- callback = function()
- vim.lsp.buf.format { bufnr = bufnr }
- end,
- })
- end
- end,
-}
diff --git a/ar/.config/NvChad/lua/custom/configs/overrides.lua b/ar/.config/NvChad/lua/custom/configs/overrides.lua
deleted file mode 100644
index 13a0aa1..0000000
--- a/ar/.config/NvChad/lua/custom/configs/overrides.lua
+++ /dev/null
@@ -1,247 +0,0 @@
-local M = {}
-
-M.blankline = {
- -- show_trailing_blankline_indent = true,
- -- show_first_indent_level = true,
- context_patterns = {
- "block",
- "else_clause",
- "catch_clause",
- "class",
- "function",
- "import_statement",
- "jsx_element",
- "jsx_self_closing_element",
- "method",
- "return",
- "try_statement",
- "^for",
- "^if",
- "^object",
- "^table",
- "^while",
- },
-}
-
-M.treesitter = {
- dependencies = {
- "nvim-treesitter/nvim-treesitter-textobjects",
- "nvim-treesitter/nvim-treesitter-context",
- },
-
- ensure_installed = {
- "bash",
- "c",
- "css",
- "html",
- "javascript",
- "julia",
- "latex",
- "lua",
- "markdown",
- "markdown_inline",
- "python",
- "query",
- -- "r",
- "scala",
- "tsx",
- "typescript",
- "vim",
- "vimdoc",
- "yaml",
- },
-
- highlight = { enable = true },
-
- indent = {
- enable = true,
- -- disable = {
- -- "python"
- -- },
- },
-}
-
-M.mason = {
- ensure_installed = {
- -- c/cpp stuff
- "clangd",
- "clang-format",
-
- -- julia
- "julia-lsp",
-
- -- lua stuff
- "lua-language-server",
- "stylua",
-
- -- markdown
- "markdownlint",
- "markdown-toc",
- "marksman",
-
- -- -- python
- "black",
- "debugpy",
- "mypy",
- "ruff",
- "pyright",
- "vulture",
-
- -- R
- -- "r-languageserver",
-
- -- -- solidity
- -- "solidity",
-
- -- SQL
- "sqlls",
- "sqlfluff",
- "sql-formatter",
-
- -- web dev stuff
- "css-lsp",
- "html-lsp",
- "typescript-language-server",
- "deno",
- "prettier",
- },
-}
-
--- git support in nvimtree
-M.nvimtree = {
- git = {
- enable = true,
- },
-
- renderer = {
- highlight_git = true,
- icons = {
- show = {
- git = true,
- },
- },
- },
-}
-
-M.cmp = {
- branch = "main",
- dependencies = {
- "hrsh7th/cmp-nvim-lsp-signature-help",
- "hrsh7th/cmp-calc",
- "hrsh7th/cmp-emoji",
- "f3fora/cmp-spell",
- "ray-x/cmp-treesitter",
- "kdheepak/cmp-latex-symbols",
- "jmbuhr/cmp-pandoc-references",
- "rafamadriz/friendly-snippets",
- "onsails/lspkind-nvim",
- },
- config = function()
- local cmp = require "cmp"
- local luasnip = require "luasnip"
- local lspkind = require "lspkind"
- lspkind.init()
-
- local has_words_before = function()
- local line, col = unpack(vim.api.nvim_win_get_cursor(0))
- return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match "%s" == nil
- end
-
- cmp.setup {
- snippet = {
- expand = function(args)
- luasnip.lsp_expand(args.body)
- end,
- },
- mapping = {
- ["<C-f>"] = cmp.mapping.scroll_docs(-4),
- ["<C-b>"] = cmp.mapping.scroll_docs(4),
- ["<C-m>"] = cmp.mapping(function(fallback)
- if luasnip.expand_or_jumpable() then
- luasnip.expand_or_jump()
- fallback()
- end
- end, { "i", "s" }),
- ["<C-p>"] = cmp.mapping(function(fallback)
- if luasnip.jumpable(-1) then
- luasnip.jump(-1)
- else
- fallback()
- end
- end, { "i", "s" }),
- ["<C-e>"] = cmp.mapping.abort(),
- ["<CR>"] = cmp.mapping.confirm {
- select = true,
- },
- ["<Tab><Tab>"] = cmp.mapping(function(fallback)
- if cmp.visible() then
- cmp.select_next_item()
- elseif has_words_before() then
- cmp.complete()
- else
- fallback()
- end
- end, { "i", "s" }),
- ["<S-Tab><S-Tab>"] = cmp.mapping(function(fallback)
- if cmp.visible() then
- cmp.select_prev_item()
- else
- fallback()
- end
- end, { "i", "s" }),
- },
- autocomplete = false,
- formatting = {
- format = lspkind.cmp_format {
- with_text = true,
- menu = {
- otter = "[🦦]",
- nvim_lsp = "[LSP]",
- luasnip = "[snip]",
- buffer = "[buf]",
- path = "[path]",
- spell = "[spell]",
- pandoc_references = "[ref]",
- tags = "[tag]",
- treesitter = "[TS]",
- calc = "[calc]",
- latex_symbols = "[tex]",
- emoji = "[emoji]",
- },
- },
- },
- sources = {
- { name = "otter" }, -- for code chunks in quarto
- { name = "path" },
- { name = "nvim_lsp" },
- { name = "nvim_lsp_signature_help" },
- { name = "luasnip", keyword_length = 3, max_item_count = 3 },
- { name = "pandoc_references" },
- { name = "buffer", keyword_length = 5, max_item_count = 3 },
- { name = "spell" },
- { name = "treesitter", keyword_length = 5, max_item_count = 3 },
- { name = "calc" },
- { name = "latex_symbols" },
- { name = "emoji" },
- },
- view = {
- entries = "native",
- },
- window = {
- documentation = {
- border = require("misc.style").border,
- },
- },
- }
-
- -- for friendly snippets
- require("luasnip.loaders.from_vscode").lazy_load()
- -- for custom snippets
- require("luasnip.loaders.from_vscode").lazy_load { paths = { vim.fn.stdpath "config" .. "/snips" } }
- -- link quarto and rmarkdown to markdown snippets
- luasnip.filetype_extend("quarto", { "markdown" })
- luasnip.filetype_extend("rmarkdown", { "markdown" })
- end,
-}
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/highlights.lua b/ar/.config/NvChad/lua/custom/highlights.lua
deleted file mode 100644
index efe8be1..0000000
--- a/ar/.config/NvChad/lua/custom/highlights.lua
+++ /dev/null
@@ -1,21 +0,0 @@
--- To find any highlight groups: "<cmd> Telescope highlights"
--- Each highlight group can take a table with variables fg, bg, bold, italic, etc
--- base30 variable names can also be used as colors
-
-local M = {}
-
----@type Base46HLGroupsList
-M.override = {
- Comment = {
- italic = true,
- },
-}
-
----@type HLTable
-M.add = {
- NvimTreeOpenedFolderName = { fg = "green", bold = true },
- HarpoonHl = { fg = "cyan", bg = "statusline_bg" },
- HarpoonBorder = { fg = "cyan" },
-}
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/init.lua b/ar/.config/NvChad/lua/custom/init.lua
deleted file mode 100644
index 3dea148..0000000
--- a/ar/.config/NvChad/lua/custom/init.lua
+++ /dev/null
@@ -1,55 +0,0 @@
--- local autocmd = vim.api.nvim_create_autocmd
-
--- Auto resize panes when resizing nvim window
--- autocmd("VimResized", {
--- pattern = "*",
--- command = "tabdo wincmd =",
--- })
-
--- Visual Studio Code
-if vim.g.vscode then
- -- Plug 'asvetliakov/vim-easymotion', has('nvim') ? {} : { 'on': [] }
- vim.cmd [[source $HOME/.config/nvim/vscode/settings.vim]]
- vim.cmd [[source $HOME/.config/nvim/vscode/easymotion-config.vim]]
-end
-
-vim.g.python3_host_prog = "/usr/bin/python3"
--- vim.g.loaded_python3_provider = 1
-
-local opt = vim.opt
-local api = vim.api
-
--- Background
--- opt.background = "dark"
-
--- Backspace
-opt.backspace = "indent,eol,start"
-
--- Clipboard
-opt.clipboard:append "unnamedplus"
-
--- Column
-opt.colorcolumn = "110"
-
--- Disable persistent undo for files in /private directory
-api.nvim_create_autocmd("BufReadPre", { pattern = "/private/*", command = "set noundofile" })
-
--- Indenting
-opt.autoindent = true
-
--- line numbers
-opt.number = true -- shows absolute line number on cursor line (when relative number is on)local
-opt.relativenumber = true -- show relative line numbers
-opt.scrolloff = 9
-
--- Swap file disable
-opt.swapfile = false
-
--- Words
--- opt.iskeyword:append "-" -- consider string-string as whole word
-
--- Wrap
-opt.wrap = false
-
--- Undo persistent enable for other files
-opt.undofile = true
diff --git a/ar/.config/NvChad/lua/custom/mappings.lua b/ar/.config/NvChad/lua/custom/mappings.lua
deleted file mode 100644
index 6ae8646..0000000
--- a/ar/.config/NvChad/lua/custom/mappings.lua
+++ /dev/null
@@ -1,740 +0,0 @@
----@type MappingsTable
-local M = {}
-local opts = { noremap = false, expr = true, buffer = true }
-
-M.disabled = {
- n = {
- ["<A-i>"] = "",
- ["<C-a>"] = "",
- ["<C-b>"] = "",
- ["<C-c>"] = "",
- ["<leader>b"] = "",
- ["<leader>ca"] = "",
- ["<leader>fm"] = "",
- ["<leader>n"] = "",
- ["<leader>rn"] = "",
- ["<leader>td"] = "",
- ["<tab>"] = "",
- ["<S-tab>"] = "",
- },
-
- t = {
- ["<A-i>"] = "",
- },
-}
-
-M.general = {
- i = {
- -- ESC
- ["jk"] = { "<ESC>", "Exit Insert Mode" },
-
- -- Navigation
- ["<C-i>"] = { "<ESC>^i", "Beginning Of Line" },
-
- -- Lines
- ["<C-a>"] = { "<ESC>o", "Next Line", opts = { nowait = true } },
- ["<C-b>"] = { "<ESC>O", "Previous Line", opts = { nowait = true } },
- ["<leader>ln"] = { "<cmd> set nu! <CR>", "Toggle Line Number" },
- ["<leader>lrn"] = { "<cmd> set rnu! <CR>", "Toggle Relative Number" },
- },
-
- n = {
- -- General
- ["<C-c>"] = { ":", "Enter Command Mode", opts = { nowait = true } },
- -- ["x"] = { "_x", "No Register x" },
- ["Q"] = { "<nop>", "Nothing" },
-
- -- Copy & Paste
- ["<leader>cpa"] = { "<cmd> %y+ <CR>", "Copy Whole File" },
- ["<leader>y"] = { '"+y', "yank in Vim" },
- ["<leader>Y"] = { '"+Y', "Yank in Clipboard" },
- -- ["<leader>s"] = { [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]], "Replace char on cursor" },
-
- -- Formatting
- ["<leader>lfm"] = {
- function()
- vim.lsp.buf.format { async = true }
- end,
- "LSP Formatting",
- },
-
- -- Line
- -- ["<C-a>"] = { "o<ESC>", "Blank line after", opts = { nowait = true } },
- -- ["<C-b>"] = { "O<ESC>", "Blank line before", opts = { nowait = true } },
-
- -- Navigation
- ["J"] = { "mzJ`z", "Join A Line To Pre-line" },
- ["n"] = { "nzzzv", "Down Search with Mid Cursor" },
- ["N"] = { "Nzzzv", "Up Search with Mid Cursor" },
- ["<C-d>"] = { "<C-d>zz", "Jump 1/2 Page with Mid Cursor" },
- ["<C-u>"] = { "<C-u>zz", "Up 1/2 Page with Mid Cursor" },
- ["<C-f>"] = { "<C-f>zz", "Page Down with Mid Cursor" },
- ["<C-b>"] = { "<C-b>zz", "Page Up with Mid Cursor" },
- -- ["<C-k>"] = { "<cmd>cnext<CR>zz", "reset cursor" },
- -- ["<C-j>"] = { "<cmd>cprev<CR>zz", "reset cursor" },
- ["<C-h>"] = { "<cmd> TmuxNavigateLeft <CR>", "Window Left" },
- ["<C-l>"] = { "<cmd> TmuxNavigateRight <CR>", "Window Right" },
- ["<C-j>"] = { "<cmd> TmuxNavigateDown <CR>", "Window Down" },
- ["<C-k>"] = { "<cmd> TmuxNavigateUp <CR>", "Window Up" },
- ["<leader>tg"] = {
- function()
- require("base46").toggle_theme()
- end,
- "Theme Toggle",
- },
-
- -- New Buffer
- ["<leader>bf"] = { "<cmd> enew <CR>", "New Buffer" },
-
- -- Split
- ["<leader>sv"] = { "<C-w>v", "Split Vertically" },
- ["<leader>sh"] = { "<C-w>h", "Split Horizontally" },
- ["<leader>se"] = { "<C-w>=", "Equal Width" },
- ["<leader>sx"] = { "<cmd> close <CR>", "Close Split Window" },
- },
- v = {
- [";"] = { ":", "Enter Command Mode", opts = { nowait = true } },
- [">"] = { ">gv", "Indent" },
- ["<C-n>"] = { "<ESC> ", "Exit Visual Mode" },
- ["J"] = { ":m '>+1<CR>gv=gv", "Move A Line To Bottom" },
- ["K"] = { ":m '<-2<CR>gv=gv", "Move A Line To Up" },
- ["<leader>y"] = { '"+y', "yank in Vim" },
- },
-}
-
--- more keybinds!
-M.browse = {
- n = {
- ["<leader>bs"] = {
- function()
- require("browse").input_search()
- end,
- "Search Bookmarks",
- },
-
- ["<leader>bm"] = {
- function()
- require("browse").open_bookmarks()
- end,
- "Browse Bookmarks",
- },
-
- ["<leader>bb"] = {
- function()
- require("browse").browse()
- end,
- "Browse Bookmarks",
- },
-
- ["<leader>bd"] = {
- function()
- require("browse.devdocs").search()
- end,
- "Search Devdocs",
- },
-
- ["<leader>bn"] = {
- function()
- require("browse.mdn").search()
- end,
- "Search MDN",
- },
- },
-}
-
-M.chatgpt = {
- n = {
- ["<leader>cg<CR>"] = { "<cmd> ChatGPT <CR>", "ChatGPT" },
- ["<leader>cgc"] = { "<cmd> ChatGPTCompleteCode <CR>", "ChatGPT Complete Code" },
- ["<leader>cgt"] = { "<cmd> ChatGPTRun add_tests <CR>", "ChatGPT Add Test" },
- ["<leader>cgf"] = { "<cmd> ChatGPTRun fix_bugs <CR>", "ChatGPT Fix Bugs" },
- ["<leader>cga"] = { "<cmd> ChatGPTActAs <CR>", "ChatGPT Act As" },
- ["<leader>cgi"] = { "<cmd> ChatGPTEditWithInstructions <CR>", "ChatGPT Edit" },
- },
-
- v = {
- ["<leader>cge"] = { "<cmd> ChatGPTRun explain_code <CR>", "ChatGPT Explain Code" },
- },
-}
-
-M.dadbod = {
- n = {
- ["<leader>db"] = { "<cmd> DBUI <CR>", "DB UI" },
- ["<leader>du"] = { "<cmd> DBUIToggle <CR>", "Toggle UI" },
- ["<leader>da"] = { "<cmd> DBUIAddConnection <CR>", "Add Connection" },
- ["<leader>df"] = { "<cmd> DBUIFindBuffer <CR>", "Find buffer" },
- ["<leader>dr"] = { "<cmd> DBUIRenameBuffer <CR>", "Rename buffer" },
- ["<leader>dl"] = { "<cmd> DBUILastQueryInfo <CR>", "Last query info" },
- },
-}
-
-M.gitsigns = {
- n = {
- ["<leader>gd"] = {
- function()
- require("gitsigns").toggle_deleted()
- end,
- "Toggle Deleted",
- },
- },
-}
-
-M.harpoon = {
- n = {
- ["<leader>a"] = {
- function()
- require("harpoon.mark").add_file()
- end,
- "Harpoon Add File",
- },
- ["<leader>ta"] = { "<cmd> Telescope harpoon marks <CR>", "Toggle Quick Menu" },
- ["<leader><tab>"] = {
- function()
- require("harpoon.ui").toggle_quick_menu()
- end,
- "Harpoon Menu",
- },
- ["<leader>1"] = {
- function()
- require("harpoon.ui").nav_file(1)
- end,
- "Navigate to File 1",
- },
- ["<leader>2"] = {
- function()
- require("harpoon.ui").nav_file(2)
- end,
- "Navigate to File 2",
- },
- ["<leader>3"] = {
- function()
- require("harpoon.ui").nav_file(3)
- end,
- "Navigate to File 3",
- },
- ["<leader>4"] = {
- function()
- require("harpoon.ui").nav_file(4)
- end,
- "Navigate to File 4",
- },
- },
-}
-
-M.iron = {
- n = {
- ["<leader>ir"] = { "<cmd> IronRepl <CR>", "REPL" },
- ["<leader>iS"] = { "<cmd> IronRestart <CR>", "Restart" },
- ["<leader>iF"] = { "<cmd> IronFocus <CR>", "Focus" },
- ["<leader>iH"] = { "<cmd> IronHide <CR>", "Hide" },
- ["<leader>ism"] = {
- function()
- require("iron.core").run_motion "send_motion"
- end,
- "Send Motion",
- },
- ["<leader>isl"] = {
- function()
- require("iron.core").send_line()
- end,
- "Send Line",
- },
- ["<leader>ist"] = {
- function()
- require("iron.core").send_until_cursor()
- end,
- "Send Until Cursor",
- },
- ["<leader>isf"] = {
- function()
- require("iron.core").send_file()
- end,
- "Send File",
- },
- ["<leader>i<cr>"] = {
- function()
- require("iron.core").send(nil, string.char(13))
- end,
- "ENTER",
- },
- ["<leader>ii"] = {
- function()
- require("iron.core").send(nil, string.char(03))
- end,
- "Interrupt",
- },
- ["<leader>id"] = {
- function()
- require("iron.core").close_repl()
- end,
- "Close REPL",
- },
- ["<leader>ic"] = {
- function()
- require("iron.core").send(nil, string.char(12))
- end,
- "Clear",
- },
- ["<leader>ims"] = {
- function()
- require("iron.core").send_mark()
- end,
- "Send Mark",
- },
- ["<leader>imm"] = {
- function()
- require("iron.core").run_motion "mark_motion"
- end,
- "Mark Motion",
- },
- ["<leader>imr"] = {
- function()
- require("iron.marks").drop_last()
- end,
- "Remove Mark",
- },
- -- ["<leader>iar"] = {
- -- function() end,
- -- "+ REPL",
- -- },
- -- ["<leader>iam"] = {
- -- function() end,
- -- "+ Mark",
- -- },
-
- -- cell
- ["<leader>ca"] = {
- function()
- require("custom.configs.cell_marker").insert_cell_after()
- end,
- "Insert Cell After",
- },
- ["<leader>cb"] = {
- function()
- require("custom.configs.cell_marker").insert_cell_before()
- end,
- "Insert Cell Before",
- },
- ["<leader>cm"] = {
- function()
- require("custom.configs.cell_marker").insert_markdown_cell()
- end,
- "Insert Markdown Cell",
- },
- ["<leader>cd"] = {
- function()
- require("custom.configs.cell_marker").delete_cell()
- end,
- "Delete Cell",
- },
- ["<leader>cj"] = {
- function()
- require("custom.configs.cell_marker").navigate_cell()
- end,
- "Next Cell",
- },
- ["<leader>ck"] = {
- function()
- require("custom.configs.cell_marker").navigate_cell(true)
- end,
- "Previous Cell",
- },
- ["<leader>cr"] = {
- function()
- require("custom.configs.cell_marker").execute_cell()
- end,
- "Cell Run",
- },
- },
-
- v = {
- ["<leader>ihc"] = {
- function()
- require("iron.marks").clear_hl()
- end,
- "Clear Highlight",
- },
- ["<leader>imv"] = {
- function()
- require("iron.core").mark_visual()
- end,
- "Mark Visual",
- },
- ["<leader>is"] = {
- function()
- require("iron.core").visual_send()
- end,
- "Send",
- },
- },
-}
-
-M.lspconfig = {
- v = {
- ["<leader>ca"] = {
- function()
- vim.lsp.buf.code_action()
- end,
- "LSP code action",
- },
- },
-}
-
-M.markdown = {
- n = {
- ["<leader>mp"] = { "<cmd> MarkdownPreview <CR>", "Markdown Preview" },
- ["<leader>ms"] = { "<cmd> MarkdownPreviewStop <CR>", "Markdown Stop" },
- ["<leader>mt"] = { "<cmd> MarkdownPreviewToggle <CR>", "Markdown Toggle" },
- },
-}
-
-M.media = {
- n = {
- ["<leader>fm"] = { "<cmd> Telescope media_files <CR>", "Media Files" },
- },
-}
-
-M.nvterm = {
- t = {
- ["<A-t>"] = {
- function()
- require("nvterm.terminal").toggle "float"
- end,
- "Toggle Floating Term",
- },
- },
-}
-
-M.playground = {
- n = {
- ["<leader>pg"] = { "<cmd> TSPlaygroundToggle <CR>", "Toggle Playground" },
- ["<leader>pc"] = { "<cmd> TSHighlightCapturesUnderCurso <CR>", "Highlight Captures" },
- ["<leader>pn"] = { "<cmd> TSNodeUnderCursor <CR>", "Node Under Cursor" },
- },
-}
-
-M.portal = {
- n = {
- ["<leader>pj"] = { "<cmd> Portal jumplist backward <CR>", "Portal Jumplist" },
- ["<leader>ph"] = {
- function()
- require("portal.builtin").harpoon.tunnel()
- end,
- "Portal Harpoon",
- },
- },
-}
-
-M.project = {
- n = {
- ["<leader>fp"] = { "<cmd> Telescope projects <CR>", "Find Project" },
- },
-}
-
-M.refactoring = {
- n = {
- -- refactoring
- ["<leader>ri"] = { "<cmd> Refactor inline_var <CR>", "Refactor Inline Var" },
- ["<leader>rI"] = { "<cmd> Refactor inline_func <CR>", "Refactor Inline Function" },
-
- ["<leader>rb"] = { "<cmd> Refactor extract_block <CR>", "Refactor Extract Block" },
- ["<leader>rbf"] = { "<cmd> Refactor extract_block_to_file <CR>", "Refactor Extrack Block To File" },
- },
-
- x = {
- -- copy & paste
- -- ["<leader>p"] = { '"_dp', "preserve cut" },
-
- -- refactoring
- ["<leader>re"] = { "<cmd> Refactor extract <CR>", "Refactor Extract" },
- ["<leader>rf"] = { "<cmd> Refactor extract_to_file <CR>", "Refactor Extract To File" },
- ["<leader>rv"] = { "<cmd> Refactor extract_var <CR>", "Refactor Extract Var" },
- ["<leader>ri"] = { "<cmd> Refactor inline_var <CR>", "Refactor Inline Var" },
- },
-}
-
-M.sniprun = {
- n = {
- ["<leader>sr"] = {
- "<cmd>lua require('sniprun').run()<CR>",
- "Run Code",
- },
-
- ["<leader>ss"] = {
- "<cmd>lua require('sniprun').reset()<CR>",
- "Reset Code",
- },
-
- ["<leader>sc"] = {
- "<cmd>lua require('sniprun').clear_repl()<CR>",
- "Clean Repl Meomory",
- },
-
- ["<leader>sd"] = {
- "<cmd>lua require('sniprun.display').close_all()<CR>",
- "Close Display",
- },
- },
-
- v = {
- ["<C-,>"] = {
- "<cmd>lua require('sniprun').run('v')<CR>",
- "Run Code",
- },
- },
-}
-
-M.tagbar = {
- n = {
- ["<leader>tb"] = { "<cmd> TagbarToggle <CR>", "Toggle Tagbar" },
- },
-}
-
-M.telescope = {
- n = {
- ["<leader>u"] = {
- function()
- require("telescope").extensions.undo.undo()
- end,
- "Undo Tree",
- },
-
- ["<leader>fc"] = { "<Cmd> Telescope frecency <CR>", "Frequent Files" },
- },
-}
-
-M.todo = {
- n = {
- ["<leader>tdo"] = { "<cmd> Todo <CR>", "Todo" },
- ["<leader>tds"] = { "<cmd> TodoTelescope <CR>", "Todo Telescope" },
- ["<leader>tdt"] = { "<cmd> TodoTrouble <CR>", "Todo Trouble" },
- ["<leader>tdl"] = { "<cmd> TodoLocList <CR>", "Todo Loclist" },
- ["<leader>tdf"] = { "<cmd> TodoQuickFix <CR>", "Todo Fix" },
- },
-}
-
-M.treesitter = {
- n = {
- -- ["<leader>tc"] = { "<cmd> TSContextEnable <CR>", "Toggle treesitter context" },
- ["<leader>gc"] = {
- function()
- require("treesitter-context").go_to_context()
- end,
- "Go To Context",
- },
- },
-}
-
-M.trouble = {
- n = {
- ["<leader>trb"] = {
- function()
- require("trouble").toggle()
- end,
- "Trouble",
- },
- ["<leader>trw"] = {
- function()
- require("trouble").toggle "workspace_diagnostics"
- end,
- "Trouble Workspace Diagnostics",
- },
- ["<leader>trd"] = {
- function()
- require("trouble").toggle "document_diagnostics"
- end,
- "Trouble Document Diagnostics",
- },
- ["<leader>trq"] = {
- function()
- require("trouble").toggle "quickfix"
- end,
- "Trouble Quickfix",
- },
- ["<leader>trl"] = {
- function()
- require("trouble").toggle "loclist"
- end,
- "Trouble Loclist",
- },
- ["gR"] = {
- function()
- require("trouble").toggle "lsp_references"
- end,
- "Trouble Lsp References",
- },
- ["<leader>trc"] = {
- function()
- require("trouble").close()
- end,
- "Trouble Close",
- },
- ["<leader>tro"] = {
- function()
- require("trouble").next { skip_groups = true, jump = true }
- end,
- "Trouble Next",
- },
- ["<leader>tri"] = {
- function()
- require("trouble").previous { skip_groups = true, jump = true }
- end,
- "Trouble Previous",
- },
- ["<leader>trf"] = {
- function()
- require("trouble").first { skip_groups = true, jump = true }
- end,
- "Trouble First",
- },
- ["<leader>tre"] = {
- function()
- require("trouble").last { skip_groups = true, jump = true }
- end,
- "Trouble Last",
- },
- -- ["<leader>trt"] = {
- -- function()
- -- require("trouble.providers.telescope").open_with_trouble()
- -- end,
- -- "Trouble Telescope",
- -- },
- },
-}
-
-M.obsidian = {
- i = {
- ["gf"] = {
- function()
- require("obsidian").util.gf_passthrough()
- end,
- "gf",
- opts,
- },
- },
-
- n = {
- ["gf"] = {
- function()
- require("obsidian").util.gf_passthrough()
- end,
- "gf",
- opts,
- },
- ["<leader>op"] = {
- function()
- local query = vim.fn.input "Enter query: "
- if query and #query > 0 then
- vim.cmd("ObsidianOpen " .. query)
- end
- end,
- "Open Notes",
- },
- ["<leader>on"] = {
- function()
- local title = vim.fn.input "Enter title: "
- if title and #title > 0 then
- vim.cmd("ObsidianNew " .. title)
- end
- end,
- "New Notes",
- },
- ["<leader>ot"] = {
- function()
- local offset = vim.fn.input "Enter offset: "
- if offset and #offset > 0 then
- vim.cmd("ObsidianToday " .. offset)
- else
- vim.cmd "ObsidianToday"
- end
- end,
- "Today Note",
- },
- ["<leader>of"] = {
- function()
- local note = vim.fn.input "Enter note: "
- if note and #note > 0 then
- vim.cmd("ObsidianSearch " .. note)
- end
- end,
- "Search Note",
- },
- ["<leader>ow"] = {
- function()
- local name = vim.fn.input "Enter name: "
- if name and #name > 0 then
- vim.cmd("ObsidianWorkspace " .. name)
- end
- end,
- "Workspace Name",
- },
- ["<leader>oi"] = {
- function()
- local image = vim.fn.input "Enter image: "
- if image and #image > 0 then
- vim.cmd("ObsidianPasteImg " .. image)
- end
- end,
- "Paste Image",
- },
- ["<leader>or"] = {
- function()
- local name = vim.fn.input "Enter name: "
- if name and #name > 0 then
- vim.cmd("ObsidianRename " .. name)
- end
- end,
- "Rename",
- },
- ["<leader>o["] = { "<cmd> ObsidianBacklinks <CR>", "Back Link" },
- ["<leader>o]"] = { "<cmd> ObsidianFollowLink <CR>", "Follow Link" },
- ["<leader>os"] = { "<cmd> ObsidianQuickSwitch <CR>", "Quick Switch" },
- ["<leader>ol"] = { "<cmd> ObsidianTomorrow <CR>", "Tomorrow Note" },
- ["<leader>oh"] = { "<cmd> ObsidianYesterday <CR>", "Yesterday Note" },
- },
-
- v = {
- ["<leader>ol"] = {
- function()
- local query = vim.fn.input "Enter query: "
- if query and #query > 0 then
- vim.cmd("ObsidianLink " .. query)
- else
- vim.cmd "ObsidianLink"
- end
- end,
- "Link Query",
- },
- ["<leader>on"] = {
- function()
- local note = vim.fn.input "Enter note: "
- if note and #note > 0 then
- vim.cmd("ObsidianLinkNew " .. note)
- else
- vim.cmd "ObsidianLinkNew"
- end
- end,
- "New Link Note",
- },
- },
-}
-
-M.tabufline = {
- n = {
- ["L"] = {
- function()
- require("nvchad.tabufline").tabuflineNext()
- end,
- "Goto next buffer",
- },
-
- ["H"] = {
- function()
- require("nvchad.tabufline").tabuflinePrev()
- end,
- "Goto prev buffer",
- },
- },
-}
-
-return M
diff --git a/ar/.config/NvChad/lua/custom/plugins.lua b/ar/.config/NvChad/lua/custom/plugins.lua
deleted file mode 100644
index 38a8880..0000000
--- a/ar/.config/NvChad/lua/custom/plugins.lua
+++ /dev/null
@@ -1,862 +0,0 @@
-local overrides = require "custom.configs.overrides"
-
----@type NvPluginSpec[]
-local plugins = {
-
- -- Override plugin definition options
-
- {
- "neovim/nvim-lspconfig",
- dependencies = {
- -- format & linting
- {
- "jose-elias-alvarez/null-ls.nvim",
- config = function()
- require "custom.configs.null-ls"
- end,
- },
- },
- config = function()
- require "plugins.configs.lspconfig"
- require "custom.configs.lspconfig"
- end, -- Override to setup mason-lspconfig
- },
-
- -- override plugin configs
- {
- "lukas-reineke/indent-blankline.nvim",
- opts = overrides.blankline,
- },
- {
- "williamboman/mason.nvim",
- opts = overrides.mason,
- },
-
- {
- "nvim-treesitter/nvim-treesitter",
- opts = overrides.treesitter,
- },
-
- {
- "nvim-tree/nvim-tree.lua",
- opts = overrides.nvimtree,
- },
-
- {
- "hrsh7th/nvim-cmp",
- dependencies = {
- "hrsh7th/cmp-calc",
- "hrsh7th/cmp-cmdline",
- "rafamadriz/friendly-snippets",
- "honza/vim-snippets",
- "jmbuhr/otter.nvim",
- },
- opts = function(_, opts)
- -- -@param opts cmp.ConfigSchema
- local cmp = require "cmp"
- opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "otter" } }))
- end,
- },
-
- ----------------------
- -- Install a plugin
- ----------------------
-
- -- better-escape
- {
- "max397574/better-escape.nvim",
- event = "InsertEnter",
- config = function()
- require("better_escape").setup()
- end,
- },
-
- -- better quick fix
- {
- "kevinhwang91/nvim-bqf",
- config = function()
- require("bqf").setup()
- end,
- },
-
- -- browse
- {
- "lalitmee/browse.nvim",
- dependencies = { "nvim-telescope/telescope.nvim" },
- config = function()
- require("browse").setup {
- -- search provider you want to use
- provider = "google", -- duckduckgo, bing
-
- -- either pass it here or just pass the table to the functions
- -- see below for more
- bookmarks = {
- ["github"] = {
- ["name"] = "search github from neovim",
- ["code_search"] = "https://github.com/search?q=%s&type=code",
- ["repo_search"] = "https://github.com/search?q=%s&type=repositories",
- ["issues_search"] = "https://github.com/search?q=%s&type=issues",
- ["pulls_search"] = "https://github.com/search?q=%s&type=pullrequests",
- },
- },
- }
- end,
- },
-
- -- bullets
- {
- "dkarter/bullets.vim",
- },
-
- -- chafa
- {
- "princejoogie/chafa.nvim",
- dependencies = {
- "nvim-lua/plenary.nvim",
- "m00qek/baleia.nvim",
- },
- cmd = "ViewImage",
- config = function()
- require("chafa").setup {
- render = {
- min_padding = 5,
- show_label = true,
- },
- events = {
- update_on_nvim_resize = true,
- },
- }
- end,
- },
-
- -- chatGPT
- {
- "dreamsofcode-io/ChatGPT.nvim",
- event = "VeryLazy",
- dependencies = {
- "MunifTanjim/nui.nvim",
- "nvim-lua/plenary.nvim",
- "nvim-telescope/telescope.nvim",
- },
- config = function()
- require("chatgpt").setup {
- async_api_key_cmd = "pass show api/chatGPT/nvim",
- }
- end,
- },
-
- -- cinnamon
- {
- "declancm/cinnamon.nvim",
- config = function()
- require("cinnamon").setup()
- end,
- },
-
- -- diff
- {
- "sindrets/diffview.nvim",
- dependencies = "nvim-lua/plenary.nvim",
- },
-
- -- doge
- {
- "kkoomen/vim-doge",
- },
-
- -- fzf
- {
- "junegunn/fzf",
- },
-
- -- hardhat-vscode
- {
- "NomicFoundation/hardhat-vscode",
- },
-
- -- harpoon
- {
- "ThePrimeagen/harpoon",
- cmd = "Harpoon",
- },
-
- -- hologram
- {
- "edluffy/hologram.nvim",
- config = function()
- require("hologram").setup {
- auto_display = true,
- }
- end,
- },
-
- -- impatient
- {
- "lewis6991/impatient.nvim",
- config = function()
- require "impatient"
- end,
- },
-
- -- iron
- {
- "hkupty/iron.nvim",
- event = "VeryLazy",
- opts = function()
- return {
- config = {
- scratch_repl = true,
- repl_definition = {
- sh = { command = { "zsh" } },
- python = require("iron.fts.python").ipython,
- },
- repl_open_cmd = require("iron.view").right "40%",
- },
- highlight = {
- italic = true,
- },
- ignore_blank_lines = true, -- ignore blank lines when sending visual select lines
- }
- end,
- config = function(_, opts)
- local iron = require "iron.core"
- iron.setup(opts)
- end,
- },
-
- -- glow
- {
- "ellisonleao/glow.nvim",
- config = true,
- cmd = "Glow",
- },
-
- -- -- jukit
- -- {
- -- "luk400/vim-jukit",
- -- config = function()
- -- require("jukit").setup()
- -- -- vim.cmd "source /Users/si/.local/nvim/lazy/vim-jukit/autoload/jukit.vim"
- -- end,
- -- },
-
- -- jupytext
- {
- "GCBallesteros/jupytext.nvim",
- config = true,
- lazy = false,
- -- event = "VeryLazy",
- },
-
- -- jupytext
- {
- "goerz/jupytext.vim",
- build = "pip3 install jupytext",
- -- lazy = false,
- event = "VeryLazy",
- dependencies = { "neovim/nvim-lspconfig" },
- opts = {},
- config = function()
- vim.g.jupytext_fmt = "py:percent"
-
- -- Autocmd to set cell markers
- vim.api.nvim_create_autocmd({ "BufEnter" }, { -- "BufWriteCmd"
- group = vim.api.nvim_create_augroup("au_show_cell_markers", { clear = true }),
- pattern = { "*.py", "*.r", "*.ipynb", "*.jl", "*.scala", "*.lua", "*.fnl" },
- callback = function(event)
- require("custom.configs.cell_marker").show_cell_markers()
- end,
- })
- end,
- },
-
- -- latex
- {
- "lervag/vimtex",
- ft = { "tex" },
- opts = { patterns = { "*.tex" } },
- config = function(_, opts)
- vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
- pattern = opts.patterns,
- callback = function()
- vim.cmd [[VimtexCompile]]
- end,
- })
-
- -- Live compilation
- vim.g.vimtex_compiler_latexmk = {
- build_dir = ".out",
- options = {
- "-shell-escape",
- "-verbose",
- "-file-line-error",
- "-interaction=nonstopmode",
- "-synctex=1",
- },
- }
- vim.g.vimtex_view_method = "zathura"
- vim.g.vimtex_fold_enabled = true
- vim.g.vimtex_syntax_conceal = {
- accents = 1,
- ligatures = 1,
- cites = 1,
- fancy = 1,
- spacing = 0, -- default: 1
- greek = 1,
- math_bounds = 1,
- math_delimiters = 1,
- math_fracs = 1,
- math_super_sub = 1,
- math_symbols = 1,
- sections = 0,
- styles = 1,
- }
- end,
- },
-
- -- leap
- {
- "ggandor/leap.nvim",
- config = function()
- require("leap").add_default_mappings()
- end,
- },
-
- -- markdown
- {
- "preservim/vim-markdown",
- branch = "master",
- dependencies = { "godlygeek/tabular" },
- config = function()
- vim.g.vim_markdown_folding_style_pythonic = 1
- vim.g.vim_markdown_folding_level = 6
- end,
- },
-
- -- markdown preview
- {
- "iamcco/markdown-preview.nvim",
- cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
- build = "cd app && yarn install",
- init = function()
- vim.g.mkdp_filetypes = { "markdown" }
- end,
- ft = { "markdown" },
- },
-
- -- marksman
- -- {
- -- "artempyanykh/marksman",
- -- },
-
- -- magma
- -- {
- -- "dccsillag/magma-nvim",
- -- },
-
- -- media
- {
- "nvim-telescope/telescope-media-files.nvim",
- dependencies = {
- "nvim-lua/popup.nvim",
- "nvim-lua/plenary.nvim",
- "nvim-telescope/telescope.nvim",
- "nvim-telescope/telescope-media-files.nvim",
- },
- config = function()
- require("telescope").setup {
- extensions = {
- media_files = {
- filetypes = { "png", "webp", "jpg", "jpeg" },
- find_cmd = "rg",
- },
- },
- }
- end,
- },
-
- -- metals
- {
- "scalameta/nvim-metals",
- dependencies = { "nvim-lua/plenary.nvim" },
- ft = { "scala" },
- opts = {},
- config = function(_, opts)
- local nvim_metals_group = vim.api.nvim_create_augroup("nvim-metals", { clear = true })
- vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
- pattern = { "*.scala", "*.sbt", "*.sc" },
- callback = function()
- local metals_config = require("metals").bare_config()
- metals_config.on_attach = function(client, bufnr)
- require("metals").setup_dap()
- end
- metals_config.init_options.statusBarProvider = "on"
- metals_config.settings = {
- showImplicitArguments = false,
- showInferredType = true,
- excludedPackages = {},
- }
- require("metals").initialize_or_attach(metals_config)
- end,
- group = nvim_metals_group,
- })
- end,
- },
-
- -- mini
- { "echasnovski/mini.nvim" },
-
- -- mini ai
- {
- "echasnovski/mini.ai",
- opts = function(_, opts)
- opts.custom_textobjects =
- vim.tbl_extend("force", opts.custom_textobjects, { h = require("custom.configs.cell_marker").miniai_spec })
- end,
- },
-
- -- neotest
- {
- "nvim-neotest/neotest",
- dependencies = {
- "stevanmilic/neotest-scala",
- },
- opts = function(_, opts)
- vim.list_extend(opts.adapters, {
- require "neotest-scala",
- })
- end,
- },
-
- -- obisidian
- {
- "epwalsh/obsidian.nvim",
- version = "*", -- recommended, use latest release instead of latest commit
- lazy = true,
- ft = "markdown",
- dependencies = {
- "nvim-lua/plenary.nvim",
- "hrsh7th/nvim-cmp",
- "nvim-telescope/telescope.nvim",
- "epwalsh/pomo.nvim",
- },
- config = function()
- require("obsidian").setup {
- workspaces = {
- {
- name = "SI",
- path = "~/Obsidian/SI",
- },
- },
- detect_cwd = false,
- notes_subdir = "Area/Journal",
- log_level = vim.log.levels.INFO,
- daily_notes = {
- folder = "Area/Journal/Daily",
- date_format = "%Y-%m-%d",
- alias_format = "%B %-d, %Y",
- template = nil,
- },
- completion = {
- nvim_cmp = true,
- min_chars = 2,
- new_notes_location = "current_dir",
- prepend_note_id = true,
- prepend_note_path = false,
- use_path_only = false,
- },
- note_id_func = function(title)
- local suffix = ""
- if title ~= nil then
- suffix = title:gsub(" ", "-"):gsub("[^A-Za-z0-9-]", ""):lower()
- else
- for _ = 1, 4 do
- suffix = suffix .. string.char(math.random(65, 90))
- end
- end
- return tostring(os.time()) .. "-" .. suffix
- end,
- disable_frontmatter = false,
- note_frontmatter_func = function(note)
- local out = { id = note.id, aliases = note.aliases, tags = note.tags }
- if note.metadata ~= nil and not vim.tbl_isempty(note.metadata) then
- for k, v in pairs(note.metadata) do
- out[k] = v
- end
- end
- return out
- end,
- templates = {
- subdir = "templates",
- date_format = "%Y-%m-%d",
- time_format = "%H:%M",
- substitutions = {},
- },
- backlinks = {
- height = 10,
- wrap = true,
- },
- follow_url_func = function(url)
- vim.fn.jobstart { "open", url } -- Mac OS
- -- vim.fn.jobstart({"xdg-open", url}) -- linux
- end,
- use_advanced_uri = false,
- open_app_foreground = false,
- finder = "telescope.nvim",
- sort_by = "modified",
- sort_reversed = true,
- open_notes_in = "current",
- ui = {
- enable = true, -- set to false to disable all additional syntax features
- update_debounce = 200, -- update delay after a text change (in milliseconds)
- checkboxes = {
- [" "] = { char = "󰄱", hl_group = "ObsidianTodo" },
- ["x"] = { char = "", hl_group = "ObsidianDone" },
- [">"] = { char = "", hl_group = "ObsidianRightArrow" },
- ["~"] = { char = "󰰱", hl_group = "ObsidianTilde" },
- },
- external_link_icon = { char = "", hl_group = "ObsidianExtLinkIcon" },
- reference_text = { hl_group = "ObsidianRefText" },
- highlight_text = { hl_group = "ObsidianHighlightText" },
- tags = { hl_group = "ObsidianTag" },
- hl_groups = {
- ObsidianTodo = { bold = true, fg = "#f78c6c" },
- ObsidianDone = { bold = true, fg = "#89ddff" },
- ObsidianRightArrow = { bold = true, fg = "#f78c6c" },
- ObsidianTilde = { bold = true, fg = "#ff5370" },
- ObsidianRefText = { underline = true, fg = "#c792ea" },
- ObsidianExtLinkIcon = { fg = "#c792ea" },
- ObsidianTag = { italic = true, fg = "#89ddff" },
- ObsidianHighlightText = { bg = "#75662e" },
- },
- },
- attachments = {
- img_folder = "assets/imgs", -- This is the default
- ---@param client obsidian.Client
- ---@param path Path the absolute path to the image file
- ---@return string
- img_text_func = function(client, path)
- local link_path
- local vault_relative_path = client:vault_relative_path(path)
- if vault_relative_path ~= nil then
- link_path = vault_relative_path
- else
- link_path = tostring(path)
- end
- local display_name = vim.fs.basename(link_path)
- return string.format("![%s](%s)", display_name, link_path)
- end,
- },
- yaml_parser = "native",
- }
- end,
- },
-
- -- otter
- {
- "jmbuhr/otter.nvim",
- opts = {
- buffers = {
- set_filetype = true,
- },
- },
- },
-
- -- playground
- {
- "nvim-treesitter/playground",
- dependencies = { "nvim-treesitter/nvim-treesitter" },
- cmd = { "TSPlaygroundToggle" },
- config = function()
- require("nvim-treesitter.configs").setup {
- playground = {
- enable = true,
- disable = {},
- updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code
- persist_queries = false, -- Whether the query persists across vim sessions
- keybindings = {
- toggle_query_editor = "o",
- toggle_hl_groups = "i",
- toggle_injected_languages = "t",
- toggle_anonymous_nodes = "a",
- toggle_language_display = "I",
- focus_language = "f",
- unfocus_language = "F",
- update = "R",
- goto_node = "<cr>",
- show_help = "?",
- },
- },
-
- query_linter = {
- enable = true,
- use_virtual_text = true,
- lint_events = { "BufWrite", "CursorHold" },
- },
- }
- end,
- },
-
- -- portal
- -- {
- -- "cbochs/portal.nvim",
- -- keys = { "<leader>pj", "<leader>ph" },
- -- },
-
- -- project
- {
- "ahmedkhalf/project.nvim",
- config = function()
- require("project_nvim").setup()
- require("nvim-tree").setup {
- sync_root_with_cwd = true,
- respect_buf_cwd = true,
- update_focused_file = {
- enable = true,
- update_root = true,
- },
- }
- end,
- },
-
- -- refactoring
- {
- "ThePrimeagen/refactoring.nvim",
- dependencies = {
- "nvim-lua/plenary.nvim",
- "nvim-treesitter/nvim-treesitter",
- },
- config = function()
- require("refactoring").setup()
- end,
- },
-
- -- slime
- -- {
- -- "jpalardy/vim-slime",
- -- init = function()
- -- vim.b["quarto_is_" .. "python" .. "_chunk"] = false
- -- Quarto_is_in_python_chunk = function()
- -- require("otter.tools.functions").is_otter_language_context "python"
- -- end
- --
- -- vim.cmd [[
- -- let g:slime_dispatch_ipython_pause = 100
- -- function SlimeOverride_EscapeText_quarto(text)
- -- call v:lua.Quarto_is_in_python_chunk()
- -- if exists('g:slime_python_ipython') && len(split(a:text,"\n")) > 1 && b:quarto_is_python_chunk
- -- return ["%cpaste -q\n", g:slime_dispatch_ipython_pause, a:text, "--", "\n"]
- -- else
- -- return a:text
- -- end
- -- endfunction
- -- ]]
- --
- -- local function mark_terminal()
- -- vim.g.slime_last_channel = vim.b.terminal_job_id
- -- vim.print(vim.g.slime_last_channel)
- -- end
- --
- -- local function set_terminal()
- -- vim.b.slime_config = { jobid = vim.g.slime_last_channel }
- -- end
- --
- -- -- slime, neovvim terminal
- -- vim.g.slime_target = "neovim"
- -- vim.g.slime_python_ipython = 1
- --
- -- require("which-key").register {
- -- ["<leader>cm"] = { mark_terminal, "mark terminal" },
- -- ["<leader>cs"] = { set_terminal, "set terminal" },
- -- }
- -- end,
- -- },
-
- -- sniprun
- {
- "michaelb/sniprun",
- -- run = "sh ./install.sh 1",
- config = function()
- require("sniprun").setup {
- -- repl_enable = { "Python3_original" }, --# enable REPL-like behavior for the given interpreters
- -- repl_disable = {}, --# disable REPL-like behavior for the given interpretersepl_enable = { "Python3_original" },
- -- interpreter_options = { --# interpreter-specific options, see doc / :SnipInfo <name>
- --
- -- --# use the interpreter name as key
- -- GFM_original = {
- -- use_on_filetypes = { "markdown.pandoc" }, --# the 'use_on_filetypes' configuration key is
- -- --# available for every interpreter
- -- },
- -- Python3_original = {
- -- error_truncate = "auto", --# Truncate runtime errors 'long', 'short' or 'auto' # the hint is available for every interpreter # but may not be always respected
- -- interpreter = "python3.9",
- -- venv = { "" },
- -- },
- -- },
- borders = "single",
- }
- end,
- },
-
- -- surround
- {
- "kylechui/nvim-surround",
- version = "*", -- Use for stability; omit to use `main` branch for the latest features
- event = "VeryLazy",
- config = function()
- require("nvim-surround").setup {
- -- Configuration here, or leave empty to use defaults
- }
- end,
- },
-
- -- SQL
- {
- "tpope/vim-dadbod",
- lazy = true,
- dependencies = {
- "kristijanhusak/vim-dadbod-ui",
- { "kristijanhusak/vim-dadbod-completion", ft = { "sql", "mysql", "plsql" }, lazy = true },
- },
- opts = {},
- config = function()
- require("custom.configs.dadbod").setup()
- end,
- cmd = { "DBUI", "DBUIToggle", "DBUIAddConnection", "DBUIFindBuffer", "DBUIRenameBuffer", "DBUILastQueryInfo" },
- },
- -- {
- -- "kristijanhusak/vim-dadbod-ui",
- -- dependencies = {
- -- { "tpope/vim-dadbod", lazy = true },
- -- { "kristijanhusak/vim-dadbod-completion", ft = { "sql", "mysql", "plsql" }, lazy = true },
- -- },
- -- cmd = {
- -- "DBUI",
- -- "DBUIToggle",
- -- "DBUIAddConnection",
- -- "DBUIFindBuffer",
- -- },
- -- init = function()
- -- -- Your DBUI configuration
- -- vim.g.db_ui_use_nerd_fonts = 1
- -- end,
- -- },
-
- -- tagbar
- {
- "preservim/tagbar",
- dependencies = { "nvim-telescope/telescope.nvim" },
- cmd = "TagbarToggle",
- },
-
- -- telescope-frecency
- {
- "nvim-telescope/telescope-frecency.nvim",
- dependencies = {
- "nvim-telescope/telescope.nvim",
- },
- config = function()
- require("telescope").load_extension "frecency"
- end,
- },
-
- -- telescope-fzf-native
- -- {
- -- "nvim-telescope/telescope-fzf-native.nvim",
- -- build = "cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build",
- -- },
-
- -- telescope-undo
- {
- "debugloop/telescope-undo.nvim",
- dependencies = { -- note how they're inverted to above example
- {
- "nvim-telescope/telescope.nvim",
- dependencies = { "nvim-lua/plenary.nvim" },
- },
- },
- keys = {
- { -- lazy style key map
- "<leader>u",
- "<cmd>Telescope undo<cr>",
- desc = "undo history",
- },
- },
- opts = {
- -- don't use `defaults = { }` here, do this in the main telescope spec
- extensions = {
- undo = {
- -- telescope-undo.nvim config, see below
- },
- -- no other extensions here, they can have their own spec too
- },
- },
- config = function(_, opts)
- -- Calling telescope's setup from multiple specs does not hurt, it will happily merge the
- -- configs for us. We won't use data, as everything is in it's own namespace (telescope
- -- defaults, as well as each extension).
- require("telescope").setup(opts)
- require("telescope").load_extension "undo"
- end,
- },
-
- -- tmux
- {
- "christoomey/vim-tmux-navigator",
- lazy = false,
- },
-
- -- todo
- {
- "folke/todo-comments.nvim",
- dependencies = { "nvim-lua/plenary.nvim" },
- opts = {},
- config = function()
- require("todo-comments").setup()
- end,
- cmd = {
- "Todo",
- "TodoTrouble",
- "TodoTelescope",
- "TodoLocList",
- "TodoQuickFix",
- },
- },
-
- -- trouble
- {
- "folke/trouble.nvim",
- dependencies = { "nvim-tree/nvim-web-devicons" },
- opts = {},
- config = function()
- require("trouble").setup()
- end,
- },
-
- -- visual multi
- { "mg979/vim-visual-multi" },
-
- -- quarto
- -- {
- -- "quarto-dev/quarto-nvim",
- -- dependencies = {
- -- "jmbuhr/otter.nvim",
- -- "neovim/nvim-lspconfig",
- -- },
- -- opts = {
- -- lspFeatures = {
- -- languages = { "r", "python", "julia", "bash", "html", "lua" },
- -- },
- -- },
- -- ft = "quarto",
- -- cmd = {
- -- "QuartoPreview",
- -- "QuartoClosePreview",
- -- "QuartoActivate",
- -- "QuartoHelp",
- -- "QuartoHover",
- -- },
- -- },
-}
-
-return plugins