update: add dotfiles
This commit is contained in:
parent
cd3519f6a9
commit
bd8ec114dc
3 changed files with 23 additions and 0 deletions
1
dotfiles/nvim/init.lua
Normal file
1
dotfiles/nvim/init.lua
Normal file
|
@ -0,0 +1 @@
|
||||||
|
require("dracoling.set")
|
16
dotfiles/nvim/lua/dracoling/set.lua
Normal file
16
dotfiles/nvim/lua/dracoling/set.lua
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
vim.opt.nu = true
|
||||||
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
|
vim.opt.wrap = false
|
||||||
|
|
||||||
|
vim.opt.smartindent = true
|
||||||
|
|
||||||
|
vim.opt.tabstop = 4
|
||||||
|
vim.opt.softtabstop = 4
|
||||||
|
vim.opt.shiftwidth = 4
|
||||||
|
vim.opt.expandtab = true
|
||||||
|
|
||||||
|
vim.opt.hlsearch = false
|
||||||
|
vim.opt.incsearch = true
|
||||||
|
|
||||||
|
vim.opt.colorcolumn = "80"
|
6
todo.md
6
todo.md
|
@ -13,3 +13,9 @@ Need to connect new devices to the coordinator in order to access the tailscale
|
||||||
## Refactor machine defaults
|
## Refactor machine defaults
|
||||||
Could probably merge some of the default locale settings and stuff, maybe even make the x11 config more generic
|
Could probably merge some of the default locale settings and stuff, maybe even make the x11 config more generic
|
||||||
|
|
||||||
|
## Dotfiles management and configuration installation
|
||||||
|
At this point to use this repo you need to grab the configuration.nix, the machine local configs,
|
||||||
|
and the programs and throw them into /etc/nixos, then you need to grab the dotfiles and put them
|
||||||
|
in .config... this is all done by hand. There should be a way using either `nix`, or `stow`, or `chezmoi`,
|
||||||
|
or some other already extant tool to do this in a slightly more automated fashion. The point of
|
||||||
|
this is to be easy for me to use and keep up with after all.
|
||||||
|
|
Loading…
Add table
Reference in a new issue