Move vim config to 'vim' module

master
Hektor Misplon 2025-05-01 16:58:23 +02:00
parent d576a3f8e7
commit e5fe794c41
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1 @@
vim.cmd([[
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc"
]])
require("vim")

5
.config/nvim/lua/vim.lua Normal file
View File

@ -0,0 +1,5 @@
vim.cmd([[
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc"
]])