fix sets.nix options by adding config beforehand
This commit is contained in:
parent
f22207f3e2
commit
82c8025b4e
2 changed files with 65 additions and 64 deletions
|
|
@ -1,7 +1,6 @@
|
|||
# The line beneath this is called `modeline`. See `:help modeline`
|
||||
# vim: ts=4:sts=0:sw=0:tw=78:noet
|
||||
{pkgs
|
||||
, ...}:{
|
||||
{
|
||||
# Import all your configuration modules here
|
||||
imports = [
|
||||
./colorscheme/onedark.nix
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
# The line beneath this is called `modeline`. See `:help modeline`
|
||||
# vim: ts=4:sts=0:sw=0:tw=78:noet
|
||||
{
|
||||
options = {
|
||||
config = {
|
||||
options = {
|
||||
relativenumber = true;
|
||||
splitbelow = true;
|
||||
redrawtime = 5000;
|
||||
|
|
@ -63,4 +64,5 @@ options = {
|
|||
# NOTE: You should make sure your terminal supports this
|
||||
termguicolors = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue