28 lines
411 B
Nix
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
|
|
'';
|
|
};
|
|
}
|
|
|