Update neovim init.lua. Add gitconfig file and reference
This commit is contained in:
parent
b94923a310
commit
a52d5072d5
3 changed files with 7 additions and 2 deletions
3
files/gitconfig
Normal file
3
files/gitconfig
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[user]
|
||||||
|
email = leoalho@proton.me
|
||||||
|
name = Leo Alho
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
vim.opt.number = true
|
|
||||||
vim.opt.swapfile = true
|
vim.opt.swapfile = true
|
||||||
vim.opt.autoindent = true
|
vim.opt.autoindent = true
|
||||||
vim.opt.shiftwidth = 4
|
vim.opt.shiftwidth = 4
|
||||||
vim.opt.confirm = true
|
vim.opt.confirm = true
|
||||||
|
vim.opt.relativenumber = true
|
||||||
|
vim.opt.number = true
|
||||||
|
|
|
||||||
3
home.scm
3
home.scm
|
|
@ -16,7 +16,8 @@
|
||||||
;; (service home-fish-service-type)
|
;; (service home-fish-service-type)
|
||||||
;; (service home-zsh-service-type)
|
;; (service home-zsh-service-type)
|
||||||
(simple-service 'my-dotfiles home-files-service-type
|
(simple-service 'my-dotfiles home-files-service-type
|
||||||
`((".tmux.conf" ,(local-file "files/tmux.conf"))))
|
`((".tmux.conf" ,(local-file "files/tmux.conf"))
|
||||||
|
(".gitconfig" ,(local-file "files/gitconfig"))))
|
||||||
(simple-service 'my-xdg-configs
|
(simple-service 'my-xdg-configs
|
||||||
home-xdg-configuration-files-service-type
|
home-xdg-configuration-files-service-type
|
||||||
`(("alacritty/alacritty.toml" ,(local-file
|
`(("alacritty/alacritty.toml" ,(local-file
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue