-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ lib, ... }: | ||
with lib; | ||
{ | ||
programs = { | ||
nixvim = { | ||
enable = mkDefault true; | ||
viAlias = mkDefault true; | ||
vimAlias = mkDefault true; | ||
colorschemes.vscode.enable = true; | ||
plugins.lightline.enable = true; | ||
extraConfigVim = mkDefault '' | ||
syntax enable | ||
filetype indent on | ||
set guicursor= | ||
set mouse=a | ||
set encoding=utf-8 | ||
set belloff=all | ||
set tabstop=2 | ||
set softtabstop=2 | ||
set shiftwidth=2 | ||
set expandtab | ||
set smarttab | ||
set nonumber | ||
set wildmenu | ||
set foldenable | ||
set clipboard=unnamedplus | ||
set nowrap | ||
set modeline | ||
set modelines=1 | ||
''; | ||
}; | ||
}; | ||
} | ||
|
||
# vim:expandtab ts=2 sw=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters