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

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

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