neovim-confs/lua/mappings.lua

162 lines
4.9 KiB
Lua
Raw Normal View History

2021-06-24 19:19:42 +02:00
local function map(mode, lhs, rhs, opts)
2021-06-27 17:29:39 +02:00
local options = {noremap = true, silent = true}
2021-03-13 02:23:02 +01:00
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
2021-03-07 15:22:30 +01:00
end
2021-04-21 09:16:24 +02:00
local opt = {}
2021-06-24 19:19:42 +02:00
-- dont copy any deleted text , this is disabled by default so uncomment the below mappings if you want them
2021-05-09 10:22:38 +02:00
--[[ remove this line
2021-04-21 09:16:24 +02:00
map("n", "dd", [=[ "_dd ]=], opt)
map("v", "dd", [=[ "_dd ]=], opt)
map("v", "x", [=[ "_x ]=], opt)
2021-05-09 10:22:38 +02:00
this line too ]]
2021-06-24 19:19:42 +02:00
--
-- escape with 'jk' mapping
2021-07-17 12:43:42 +02:00
vim.api.nvim_set_keymap("i", "jk", "<esc>", {})
vim.api.nvim_set_keymap("v", "jk", "<esc>", {})
vim.api.nvim_set_keymap("t", "jk", "<esc>", {})
2021-07-17 12:43:42 +02:00
-- Don't copy the replaced text after pasting in visual mode
map("v", "p", '"_dP', opt)
2021-04-02 07:36:20 +02:00
-- OPEN TERMINALS --
map("n", "<C-l>", ":vnew +terminal | setlocal nobuflisted <CR>", opt) -- term over right
map("n", "<C-x>", ":10new +terminal | setlocal nobuflisted <CR>", opt) -- term bottom
map("n", "<C-t>t", ":<Cmd> terminal <CR>", opt) -- term buffer
2021-04-01 20:53:12 +02:00
2021-06-24 19:19:42 +02:00
-- copy whole file content
map("n", "<C-a>", ":%y+<CR>", opt)
2021-04-20 06:15:14 +02:00
2021-06-24 19:19:42 +02:00
-- toggle numbers
map("n", "<leader>n", ":set nu!<CR>", opt)
2021-04-20 06:15:14 +02:00
2021-06-24 19:19:42 +02:00
-- Truezen.nvim
map("n", "<leader>zz", ":TZAtaraxis<CR>", opt)
map("n", "<leader>zm", ":TZMinimalist<CR>", opt)
map("n", "<leader>zf", ":TZFocus<CR>", opt)
2021-05-09 10:22:38 +02:00
2021-06-27 14:45:58 +02:00
map("n", "<C-s>", ":w <CR>", opt)
2021-06-15 12:27:55 +02:00
-- Commenter Keybinding
2021-06-27 17:29:39 +02:00
map("n", "<leader>/", ":CommentToggle<CR>", opt)
map("v", "<leader>/", ":CommentToggle<CR>", opt)
2021-06-24 19:19:42 +02:00
-- compe stuff
local t = function(str)
return vim.api.nvim_replace_termcodes(str, true, true, true)
end
local check_back_space = function()
local col = vim.fn.col(".") - 1
if col == 0 or vim.fn.getline("."):sub(col, col):match("%s") then
return true
else
return false
end
end
_G.tab_complete = function()
if vim.fn.pumvisible() == 1 then
return t "<C-n>"
elseif check_back_space() then
return t "<Tab>"
else
return vim.fn["compe#complete"]()
end
end
_G.s_tab_complete = function()
if vim.fn.pumvisible() == 1 then
return t "<C-p>"
elseif vim.fn.call("vsnip#jumpable", {-1}) == 1 then
return t "<Plug>(vsnip-jump-prev)"
else
return t "<S-Tab>"
end
end
function _G.completions()
local npairs
if
not pcall(
function()
npairs = require "nvim-autopairs"
end
)
then
return
end
2021-06-24 19:19:42 +02:00
if vim.fn.pumvisible() == 1 then
if vim.fn.complete_info()["selected"] ~= -1 then
return vim.fn["compe#confirm"]("<CR>")
end
end
return npairs.check_break_line_char()
end
-- compe mappings
map("i", "<Tab>", "v:lua.tab_complete()", {expr = true})
map("s", "<Tab>", "v:lua.tab_complete()", {expr = true})
map("i", "<S-Tab>", "v:lua.s_tab_complete()", {expr = true})
map("s", "<S-Tab>", "v:lua.s_tab_complete()", {expr = true})
map("i", "<CR>", "v:lua.completions()", {expr = true})
2021-06-25 19:36:17 +02:00
2021-06-27 17:29:39 +02:00
-- nvimtree
map("n", "<C-n>", ":NvimTreeToggle<CR>", opt)
2021-06-27 17:29:39 +02:00
-- format code
map("n", "<Leader>fm", ":Neoformat<CR>", opt)
2021-06-26 04:10:23 +02:00
-- dashboard stuff
map("n", "<Leader>db", ":Dashboard<CR>", opt)
map("n", "<Leader>fn", ":DashboardNewFile<CR>", opt)
map("n", "<Leader>bm", ":DashboardJumpMarks<CR>", opt)
map("n", "<C-s>l", ":SessionLoad<CR>", opt)
map("n", "<C-s>s", ":SessionSave<CR>", opt)
2021-06-26 04:41:39 +02:00
-- Telescope
map("n", "<Leader>fw", ":Telescope live_grep<CR>", opt)
map("n", "<Leader>gt", ":Telescope git_status <CR>", opt)
map("n", "<Leader>cm", ":Telescope git_commits <CR>", opt)
map("n", "<Leader>ff", ":Telescope find_files <CR>", opt)
2021-07-24 06:41:21 +02:00
map("n", "<Leader>fp", ":Telescope media_files <CR>", opt)
map("n", "<Leader>fb", ":Telescope buffers<CR>", opt)
map("n", "<Leader>fh", ":Telescope help_tags<CR>", opt)
map("n", "<Leader>fo", ":Telescope oldfiles<CR>", opt)
2021-06-27 14:45:58 +02:00
-- bufferline tab stuff
2021-07-21 07:56:25 +02:00
map("n", "<S-t>", ":enew<CR>", opt) -- new buffer
map("n", "<C-t>b", ":tabnew<CR>", opt) -- new tab
2021-06-27 17:29:39 +02:00
map("n", "<S-x>", ":bd!<CR>", opt) -- close tab
2021-06-27 14:45:58 +02:00
-- move between tabs
map("n", "<TAB>", ":BufferLineCycleNext<CR>", opt)
map("n", "<S-TAB>", ":BufferLineCyclePrev<CR>", opt)
-- use ESC to turn off search highlighting
2021-07-18 12:40:23 +02:00
map("n", "<Esc>", ":noh<CR>", opt)
2021-07-18 12:40:23 +02:00
-- get out of terminal with jk
map("t", "jk", "<C-\\><C-n>", opt)
2021-07-23 19:22:09 +02:00
-- Packer commands till because we are not loading it at startup
vim.cmd("silent! command PackerCompile lua require 'pluginList' require('packer').compile()")
vim.cmd("silent! command PackerInstall lua require 'pluginList' require('packer').install()")
vim.cmd("silent! command PackerStatus lua require 'pluginList' require('packer').status()")
vim.cmd("silent! command PackerSync lua require 'pluginList' require('packer').sync()")
vim.cmd("silent! command PackerUpdate lua require 'pluginList' require('packer').update()")
2021-07-23 19:22:09 +02:00
-- Vim Fugitive
map("n", "<Leader>gs", ":Git<CR>", opt)
map("n", "<Leader>gh", ":diffget //2<CR>", opt)
map("n", "<Leader>gl", ":diffget //3<CR>", opt)
map("n", "<Leader>gb", ":Git blame<CR>", opt)