Files
nixos-flake/home/users/odweta/vim.nix
T
2026-01-19 18:32:58 +01:00

18 lines
289 B
Nix

{ pkgs, ... }:
{
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline ctrlp ];
settings = { ignorecase = true; };
extraConfig = ''
set sw=2
set ts=2
set et
set smartindent
set number
syntax on
'';
};
}