Completion and funny space bar stuff.
This commit is contained in:
parent
4eb88a2417
commit
2a5c7e3581
2 changed files with 17 additions and 2 deletions
5
init.lua
5
init.lua
|
|
@ -36,6 +36,11 @@ vim.keymap.set("n", "<Leader>x", ":.lua<CR>")
|
|||
vim.keymap.set("v", "<Leader>x", ":lua<CR>")
|
||||
vim.api.nvim_set_keymap('t', '<ESC>', [[<C-\><C-n>]], {noremap = true})
|
||||
-- vim.api.nvim_set_keymap('i', '<C-k>', [[<C-x><C-o>]], {noremap = true})
|
||||
vim.keymap.set('v', '<C-Space>', '<Nop>', { desc = 'Stop Ctrl+Space from acting as W' })
|
||||
vim.keymap.set('n', '<C-Space>', function()
|
||||
vim.cmd('startinsert')
|
||||
require('blink.cmp').show()
|
||||
end)
|
||||
|
||||
-- Harpoon Setup and Settings
|
||||
local harpoon = require("harpoon")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue