Migrate configuration to nixvim

This commit is contained in:
♥ Minnie ♥ 2024-08-04 21:19:37 +08:00
parent be9fe07ba1
commit 8772a4ca32
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
18 changed files with 759 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
extraPlugins = with pkgs.vimPlugins; [
gruvbox-material
];
extraConfigLua = ''
vim.o.termguicolors = true
vim.g.gruvbox_material_background = 'hard'
vim.g.gruvbox_material_enable_italic = 1
vim.cmd.colorscheme('gruvbox-material')
'';
}