vim win-shift lib
This commit is contained in:
parent
1b4e32679f
commit
50b01b5a0e
1 changed files with 297 additions and 275 deletions
22
init.lua
22
init.lua
|
|
@ -281,6 +281,24 @@ require('packer').startup(function(use)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use({
|
||||||
|
"jackMort/ChatGPT.nvim",
|
||||||
|
config = function()
|
||||||
|
require("chatgpt").setup()
|
||||||
|
end,
|
||||||
|
requires = {
|
||||||
|
"MunifTanjim/nui.nvim",
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
"nvim-telescope/telescope.nvim"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
use({ 'sindrets/winshift.nvim',
|
||||||
|
config = function()
|
||||||
|
require("winshift").setup()
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require('packer').sync()
|
require('packer').sync()
|
||||||
end
|
end
|
||||||
|
|
@ -323,6 +341,10 @@ wk.register({
|
||||||
r = { ":TableModeRealign<cr>", "Realign" },
|
r = { ":TableModeRealign<cr>", "Realign" },
|
||||||
e = { ":TableEvalFormulaLine<cr>", "Evaluate" },
|
e = { ":TableEvalFormulaLine<cr>", "Evaluate" },
|
||||||
},
|
},
|
||||||
|
w = {
|
||||||
|
name = "Window",
|
||||||
|
s = { ":WinShift<cr>", "Shift" },
|
||||||
|
},
|
||||||
o = "Org",
|
o = "Org",
|
||||||
p = {
|
p = {
|
||||||
name = "Packer",
|
name = "Packer",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue