๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove neotest

kacaii 991de7a1 d8e9a67d

+40 -82
+4 -1
.config/nvim/lua/plugins/comfy_line_numbers.lua
··· 1 - return { "mluders/comfy-line-numbers.nvim", opts = {} } 1 + return { 2 + "mluders/comfy-line-numbers.nvim", 3 + opts = {}, 4 + }
+18 -24
.config/nvim/lua/plugins/mini_surround.lua
··· 1 1 return { 2 - { 3 - "nvim-mini/mini.surround", 4 - opts = { 5 - mappings = { 6 - add = ";;", 7 - delete = ";d", 8 - find = ";f", 9 - find_left = ";F", 10 - highlight = ";h", 11 - replace = ";r", 12 - update_n_lines = ";n", 13 - }, 14 - }, 15 - }, 2 + { 3 + "nvim-mini/mini.surround", 4 + opts = { 5 + mappings = { 6 + add = ";;", 7 + delete = ";d", 8 + find = ";f", 9 + find_left = ";F", 10 + highlight = ";h", 11 + replace = ";r", 12 + update_n_lines = ";n", 13 + }, 14 + }, 15 + }, 16 16 17 - { 18 - "folke/flash.nvim", 19 - opts = { 20 - modes = { 21 - char = { 22 - keys = { "f", "F", "t", "T" }, 23 - }, 24 - }, 25 - }, 26 - }, 17 + { 18 + "folke/flash.nvim", 19 + opts = { modes = { char = { keys = { "f", "F", "t", "T" } } } }, 20 + }, 27 21 }
-24
.config/nvim/lua/plugins/neotest.lua
··· 1 - return { 2 - "nvim-neotest/neotest", 3 - dependencies = { 4 - "nvim-neotest/nvim-nio", 5 - "nvim-lua/plenary.nvim", 6 - "antoinemadec/FixCursorHold.nvim", 7 - "nvim-treesitter/nvim-treesitter", 8 - }, 9 - 10 - opts = { 11 - status = { virtual_text = true }, 12 - output = { open_on_run = false }, 13 - floating = { border = "single" }, 14 - 15 - adapters = { 16 - -- ๎˜† Python 17 - require("neotest-python")({ 18 - dap = { justMyCode = false }, 19 - runner = "pytest", 20 - args = { "--log-level", "DEBUG" }, 21 - }), 22 - }, 23 - }, 24 - }
+17 -16
.config/nvim/lua/plugins/tiny_inline_diagnostic.lua
··· 1 1 return { 2 - { 3 - "rachartier/tiny-inline-diagnostic.nvim", 4 - event = "VeryLazy", 5 - priority = 1000, 6 - opts = { 7 - preset = "minimal", 8 - options = { 9 - add_messages = { display_count = true }, 10 - multilines = { enabled = true }, 11 - }, 12 - }, 13 - }, 14 - { 15 - "neovim/nvim-lspconfig", 16 - opts = { diagnostics = { virtual_text = false } }, 17 - }, 2 + { 3 + "rachartier/tiny-inline-diagnostic.nvim", 4 + event = "VeryLazy", 5 + priority = 1000, 6 + opts = { 7 + preset = "minimal", 8 + options = { 9 + add_messages = { display_count = true }, 10 + multilines = { enabled = true }, 11 + }, 12 + }, 13 + }, 14 + 15 + { 16 + "neovim/nvim-lspconfig", 17 + opts = { diagnostics = { virtual_text = false } }, 18 + }, 18 19 }
-17
.config/nvim/lua/plugins/tmux_navigator.lua
··· 1 - return { 2 - "christoomey/vim-tmux-navigator", 3 - cmd = { 4 - "TmuxNavigateLeft", 5 - "TmuxNavigateDown", 6 - "TmuxNavigateUp", 7 - "TmuxNavigateRight", 8 - "TmuxNavigatePrevious", 9 - }, 10 - keys = { 11 - { "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" }, 12 - { "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" }, 13 - { "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" }, 14 - { "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" }, 15 - { "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" }, 16 - }, 17 - }
+1
.config/nvim/lua/plugins/treesitter.lua
··· 5 5 "fish", 6 6 "git_config", 7 7 "gleam", 8 + "just", 8 9 "sql", 9 10 "ssh_config", 10 11 "tmux",