Fix formatting; show hidden characters.
parent
0841698bd4
commit
bdcad8505f
|
@ -46,6 +46,7 @@
|
||||||
customRC = ''
|
customRC = ''
|
||||||
set colorcolumn=80,100
|
set colorcolumn=80,100
|
||||||
set expandtab " Spaces instead of tabs.
|
set expandtab " Spaces instead of tabs.
|
||||||
|
set list " Show hidden characters.
|
||||||
set shiftwidth=2 " # of spaces to use for each (auto)indent.
|
set shiftwidth=2 " # of spaces to use for each (auto)indent.
|
||||||
set tabstop=2 " # of spaces a <Tab> in the file counts for.
|
set tabstop=2 " # of spaces a <Tab> in the file counts for.
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -28,8 +28,8 @@
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
users.jrpotter = import ./jrpotter;
|
users.jrpotter = import ./jrpotter;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -111,6 +111,7 @@ in
|
||||||
vim.g.maplocalleader = '\\'
|
vim.g.maplocalleader = '\\'
|
||||||
vim.o.colorcolumn = '80,100'
|
vim.o.colorcolumn = '80,100'
|
||||||
vim.o.expandtab = true -- Spaces instead of tabs.
|
vim.o.expandtab = true -- Spaces instead of tabs.
|
||||||
|
vim.o.list = true -- Show hidden characters.
|
||||||
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
|
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
|
||||||
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
|
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
|
||||||
'')
|
'')
|
||||||
|
|
Loading…
Reference in New Issue