114 lines
3.1 KiB
Lua
114 lines
3.1 KiB
Lua
local function map(mode, lhs, rhs, opts)
|
|
local options = {noremap = true}
|
|
if opts then
|
|
options = vim.tbl_extend("force", options, opts)
|
|
end
|
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
|
end
|
|
|
|
local opt = {}
|
|
|
|
-- dont copy any deleted text , this is disabled by default so uncomment the below mappings if you want them
|
|
--[[ remove this line
|
|
|
|
map("n", "dd", [=[ "_dd ]=], opt)
|
|
map("v", "dd", [=[ "_dd ]=], opt)
|
|
map("v", "x", [=[ "_x ]=], opt)
|
|
|
|
this line too ]]
|
|
--
|
|
|
|
-- OPEN TERMINALS --
|
|
map("n", "<C-l>", [[<Cmd>vnew term://bash <CR>]], opt) -- term over right
|
|
map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt) -- term bottom
|
|
map("n", "<C-t>t", [[<Cmd> tabnew | term <CR>]], opt) -- term newtab
|
|
|
|
-- copy whole file content
|
|
map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
|
|
|
|
-- toggle numbers
|
|
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
|
|
|
|
-- Truezen.nvim
|
|
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)
|
|
map("n", "<leader>m", [[ <Cmd> TZMinimalist<CR>]], opt)
|
|
|
|
map("n", "<C-s>", [[ <Cmd> w <CR>]], opt)
|
|
-- vim.cmd("inoremap jh <Esc>")
|
|
|
|
-- Commenter Keybinding
|
|
map("n", "<leader>/", ":CommentToggle<CR>", {noremap = true, silent = true})
|
|
map("v", "<leader>/", ":CommentToggle<CR>", {noremap = true, silent = true})
|
|
|
|
-- 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 = require("nvim-autopairs")
|
|
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})
|
|
|
|
-- Mappings for nvimtree
|
|
map(
|
|
"n",
|
|
"<C-n>",
|
|
":NvimTreeToggle<CR>",
|
|
{
|
|
noremap = true,
|
|
silent = true
|
|
}
|
|
)
|
|
|
|
map("n", "<Leader>fm", [[<Cmd> Neoformat<CR>]], opt)
|
|
|
|
-- dashboard stuff
|
|
map("n", "<Leader>fw", [[<Cmd> Telescope live_grep<CR>]], opt)
|
|
map("n", "<Leader>fn", [[<Cmd> DashboardNewFile<CR>]], opt)
|
|
map("n", "<Leader>bm", [[<Cmd> DashboardJumpMarks<CR>]], opt)
|
|
map("n", "<Leader>sl", [[<Cmd> SessionLoad<CR>]], opt)
|
|
map("n", "<Leader>ss", [[<Cmd> SessionSave<CR>]], opt)
|