Files
bankrupt/home-manager/modules/neovim.nix
T
2025-11-15 23:57:24 +08:00

28 lines
411 B
Nix

# Text editor configurations
{
inputs,
lib,
config,
pkgs,
...
}: {
# Neovim configuration
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
extraConfig = ''
set number
set relativenumber
set expandtab
set tabstop=2
set shiftwidth=2
set smartindent
set clipboard=unnamedplus
'';
};
}