2022-04-02 04:02:22 +00:00
|
|
|
-- vim: shiftwidth=2
|
2021-11-16 11:55:36 +00:00
|
|
|
|
2022-04-04 14:00:31 +00:00
|
|
|
-- Activating my own modules ala-Doom Emacs.
|
|
|
|
require("plugins")
|
|
|
|
require("lsp-user-config").setup()
|
2021-07-15 08:28:28 +00:00
|
|
|
|
2022-04-04 14:00:31 +00:00
|
|
|
vim.g['mapleader'] = " "
|
2022-05-20 06:44:26 +00:00
|
|
|
vim.g['maplocalleader'] = ","
|
2022-04-04 14:00:31 +00:00
|
|
|
vim.g['syntax'] = true
|
2021-07-15 08:28:28 +00:00
|
|
|
|
|
|
|
-- Editor configuration
|
2022-01-21 09:00:52 +00:00
|
|
|
vim.opt.completeopt = "menuone,noselect"
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.encoding = "utf-8"
|
|
|
|
vim.opt.number = true
|
|
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.cursorline = true
|
|
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.shiftwidth = 4
|
|
|
|
vim.opt.tabstop = 4
|
|
|
|
vim.opt.conceallevel = 1
|
|
|
|
vim.opt.list = true
|
|
|
|
vim.opt.listchars = { tab = " ", trail = "·" }
|
|
|
|
vim.opt_local.spell = true
|
|
|
|
vim.opt.smartindent = true
|
2021-07-15 08:28:28 +00:00
|
|
|
|
|
|
|
-- I have yet to solve how to do the following in Lua, lmao
|
2022-01-21 09:00:52 +00:00
|
|
|
vim.cmd "highlight clear SpellBad"
|
|
|
|
vim.cmd "highlight clear SpellLocal"
|
|
|
|
vim.cmd "highlight clear SpellCap"
|
|
|
|
vim.cmd "highlight clear SpellRare"
|
|
|
|
vim.cmd "highlight Visual term=reverse cterm=reverse"
|
|
|
|
vim.cmd "colorscheme fds-theme"
|
2021-07-15 08:28:28 +00:00
|
|
|
|
|
|
|
-- Keybindings
|
2022-04-24 13:20:37 +00:00
|
|
|
vim.keymap.set('n', '<leader>bd', ':bd<cr>', {})
|
|
|
|
vim.keymap.set('i', 'jk', '<Esc>', {})
|
|
|
|
vim.keymap.set('n', '<leader>hr', '<cmd>source $MYVIMRC<cr>', {})
|