Add mappings to add a trailing comma or semicolon to the end of the current line from insert mode.
127 lines
2.9 KiB
Lua
127 lines
2.9 KiB
Lua
local M = {}
|
|
|
|
local function set_autocmd()
|
|
vim.cmd [[
|
|
autocmd BufRead,BufNewFile *.test set filetype=php
|
|
|
|
autocmd BufWritePost plugins.lua luafile %
|
|
autocmd BufWritePost plugins.lua PackerSync
|
|
|
|
autocmd FileType gitcommit highlight ColorColumn ctermbg=8
|
|
autocmd FileType gitcommit setlocal colorcolumn=50,72
|
|
autocmd FileType gitcommit setlocal spell
|
|
autocmd FileType gitcommit setlocal textwidth=72
|
|
]]
|
|
end
|
|
|
|
local function set_filetypes()
|
|
vim.cmd [[
|
|
filetype indent on
|
|
filetype on
|
|
filetype plugin on
|
|
]]
|
|
end
|
|
|
|
local function set_key_mappings()
|
|
local map = vim.api.nvim_set_keymap
|
|
|
|
local options = { noremap = true }
|
|
|
|
map("n", "<Leader>so", ":call opdavies#save_and_exec()<CR>", options)
|
|
|
|
-- Format paragraphs to an 80 character line length.
|
|
map("n", "<Leader>g", "gqap", options)
|
|
map("x", "<Leader>g", "gqa", options)
|
|
|
|
-- Make the current file executable
|
|
map("n", "<Leader>x", ":!chmod +x %<Cr>", options)
|
|
|
|
-- Yank from the current column to the end of the line
|
|
map("n", "Y", "yg$", options)
|
|
|
|
-- Keep things centred
|
|
map("n", "n", "nzzzv", options)
|
|
map("n", "N", "Nzzzv", options)
|
|
|
|
-- Remove arrow keys
|
|
map("v", "<down>", "<nop>", options)
|
|
map("v", "<left>", "<nop>", options)
|
|
map("v", "<right>", "<nop>", options)
|
|
map("v", "<up>", "<nop>", options)
|
|
|
|
-- Clears hlsearch after doing a search, otherwise just does normal <CR> stuff
|
|
vim.cmd [[ nnoremap <expr> <CR> {-> v:hlsearch ? ":nohl\<CR>" : "\<CR>"}() ]]
|
|
|
|
map("n", "<C-f>", ":silent !tmux neww tmux-sessioniser<CR>", { noremap = true, silent = true })
|
|
|
|
local imap = require "opdavies.keymap".imap
|
|
|
|
-- Easy insertion of a trailing ; or , from insert mode
|
|
imap({ ",,", "<Esc>A,<Esc>" })
|
|
imap({ ";;", "<Esc>A;<Esc>" })
|
|
end
|
|
|
|
local function set_highlights()
|
|
vim.cmd [[highlight Comment cterm=italic gui=italic]]
|
|
end
|
|
|
|
local function set_vim_g()
|
|
vim.g.mapleader = " "
|
|
end
|
|
|
|
local function set_vim_o()
|
|
local settings = {
|
|
autoindent = true,
|
|
breakindent = true,
|
|
conceallevel = 0,
|
|
cursorline = true,
|
|
expandtab = true,
|
|
foldlevel = 1,
|
|
foldlevelstart = 99,
|
|
foldmethod = "indent",
|
|
formatoptions = "lm",
|
|
hidden = false,
|
|
linebreak = true,
|
|
mouse = "n",
|
|
number = true,
|
|
pumblend = 10,
|
|
pumheight = 10,
|
|
relativenumber = true,
|
|
scrolloff = 10,
|
|
shiftwidth = 2,
|
|
showmode = false,
|
|
smartindent = true,
|
|
softtabstop = 2,
|
|
splitbelow = true,
|
|
splitright = true,
|
|
swapfile = false,
|
|
syntax = "on",
|
|
tabstop = 2,
|
|
termguicolors = true,
|
|
textwidth = 0,
|
|
updatetime = 1000,
|
|
wrap = false,
|
|
}
|
|
|
|
for key, value in pairs(settings) do
|
|
vim.o[key] = value
|
|
end
|
|
|
|
vim.opt.clipboard:append "unnamedplus"
|
|
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
|
vim.opt.laststatus = 3
|
|
end
|
|
|
|
M.setup = function()
|
|
set_vim_g()
|
|
set_vim_o()
|
|
set_key_mappings()
|
|
set_autocmd()
|
|
set_filetypes()
|
|
set_highlights()
|
|
|
|
vim.g.snippets = "luasnip"
|
|
end
|
|
|
|
return M
|