mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 09:48:51 +02:00
add: big file plugins
This commit is contained in:
parent
f2cd687048
commit
b643b04031
4 changed files with 15 additions and 16 deletions
|
@ -150,7 +150,7 @@ pcode.nvim_dap = false -- not support for windows os (auto config mason-nvim-dap
|
|||
pcode.nvim_dap_javascript = false
|
||||
pcode.nvim_dap_php = false
|
||||
pcode.nvim_dap_python = false
|
||||
pcode.nvim_dap_go = true
|
||||
pcode.nvim_dap_go = false
|
||||
|
||||
-- https://github.com/olimorris/neotest-phpunit
|
||||
pcode.phpunit = false
|
||||
|
@ -162,4 +162,4 @@ pcode.jest = false
|
|||
pcode.jest_command = "npm test -- "
|
||||
pcode.jest_config = "jest.config.mjs"
|
||||
-- https://github.com/fredrikaverpil/neotest-golang
|
||||
pcode.gotest = true
|
||||
pcode.gotest = false
|
||||
|
|
8
lua/plugins/bigfile.lua
Normal file
8
lua/plugins/bigfile.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"LunarVim/bigfile.nvim",
|
||||
lazy = true,
|
||||
event = "BufReadPre",
|
||||
opts = {
|
||||
file_size = 2,
|
||||
},
|
||||
}
|
|
@ -41,6 +41,7 @@ vim.g.maplocalleader = " "
|
|||
|
||||
-- Normal --
|
||||
-- Better window navigation
|
||||
keymap("n", "<C-t>", ':lua require("user.utils.whichkey")._OPEN_WEZTERM_TAB()<cr>', opts)
|
||||
keymap("n", "<C-h>", "<C-w>h", opts)
|
||||
keymap("n", "<C-j>", "<C-w>j", opts)
|
||||
keymap("n", "<C-k>", "<C-w>k", opts)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue