Find a file
♥ Minnie ♥ 547ed496e7
feat: update cmp configuration for better Lua support and improved keybindings
- Updated snippet expansion function to use Lua syntax.
- Added new mappings for scrolling, completing, closing, selecting next/previous items, and confirming with replacement behavior.
- Ensured compatibility with Lua syntax in the Nix environment.
2025-02-20 19:36:46 +08:00
config feat: update cmp configuration for better Lua support and improved keybindings 2025-02-20 19:36:46 +08:00
flake.lock bump inputs 2024-12-22 16:27:32 +08:00
flake.nix fmt: alejandra 2024-08-08 09:58:48 +08:00
LICENSE Initial commit 2024-08-02 21:53:20 +08:00
README.md Update README.md 2024-08-06 21:06:54 +08:00

NixVim Configuration for Neovim

This repository contains my personal configuration for Neovim, managed with NixVim written in Nix.

Features

  • Gruvbox Material
  • Treesitter
  • Telesope
  • AutoCompletion
  • Git Integration
  • UI Enhancement

Installation

Intergration with NixOS/Home-Manager.

inputs = {
  nixvim-config.url = "git+https://git.sajenim.dev/jasmine/nvim.nix.git";
};
{ inputs, system, ... }:

{
  # NixOS
  environment.systemPackages = [ inputs.nixvim-config.packages.${system}.default ];
  # Home-Manager
  home.packages = [ inputs.nixvim-config.packages.${system}.default ];
}

Build and Run

nix run git+https://git.sajenim.dev/jasmine/nvim.nix.git

References