summaryrefslogtreecommitdiff
path: root/.config/nvim/after/ftplugin/lua.lua
blob: 56d721ac0887cb99a26b66d10cc0588cfcbb91ee (plain)
1
2
3
4
5
6
7
8
9
local setlocal = vim.opt_local

setlocal.expandtab = true
setlocal.tabstop = 2
setlocal.softtabstop = 2
setlocal.shiftwidth = 2

vim.keymap.set("", "<F6>", ":!lua %<CR>", { noremap = true, silent = true })
setlocal.formatoptions:remove { "o" }