1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-21 06:12:46 +00:00

nvim: set rpy to python filetype

This commit is contained in:
Phantop 2024-10-29 17:45:20 -04:00
parent f4430c9fb2
commit 5315ed748a

View file

@ -2,6 +2,7 @@ vim.opt.background = 'dark'
vim.opt.clipboard = 'unnamedplus'
vim.opt.colorcolumn = '85'
vim.opt.mouse = 'a'
vim.opt.shiftwidth = 4
vim.opt.textwidth = 0
vim.opt.wrapmargin = 0
@ -15,3 +16,9 @@ vim.opt.smartcase = true
vim.opt.smartindent = true
vim.opt.termguicolors = true
vim.opt.wrap = false
vim.filetype.add{
extension = {
rpy = 'python',
}
}