Remove vim and add nvim config
This commit is contained in:
parent
92b6c017d1
commit
e06ce1a49a
26 changed files with 665 additions and 66 deletions
4
nvim/ftplugin/go.lua
Normal file
4
nvim/ftplugin/go.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
vim.opt.spell = true
|
||||
vim.opt.spelllang = "en_us"
|
||||
vim.opt.colorcolumn = "120"
|
||||
vim.opt.textwidth = 120
|
||||
4
nvim/ftplugin/java.lua
Normal file
4
nvim/ftplugin/java.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
vim.opt.spell = true
|
||||
vim.opt.spelllang = "en_us"
|
||||
vim.opt.colorcolumn = "120"
|
||||
vim.opt.textwidth = 120
|
||||
2
nvim/ftplugin/mail.vim
Normal file
2
nvim/ftplugin/mail.vim
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
setlocal colorcolumn=72
|
||||
setlocal formatoptions+=aw
|
||||
4
nvim/ftplugin/markdown.lua
Normal file
4
nvim/ftplugin/markdown.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
vim.opt.spell = true
|
||||
vim.opt.spelllang = "en_us"
|
||||
vim.opt.colorcolumn = "80"
|
||||
vim.opt.textwidth = 80
|
||||
4
nvim/ftplugin/python.lua
Normal file
4
nvim/ftplugin/python.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
vim.opt.spell = true
|
||||
vim.opt.spelllang = "en_us"
|
||||
vim.opt.colorcolumn = "120"
|
||||
vim.opt.textwidth = 80
|
||||
3
nvim/ftplugin/tex.vim
Normal file
3
nvim/ftplugin/tex.vim
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
setlocal wrap
|
||||
setlocal linebreak
|
||||
setlocal nonumber
|
||||
Loading…
Reference in a new issue