this repo has no description

chore: update README

hauleth.dev 785d59e6 a7b8255f

verified
Changed files
+15 -47
+1 -2
Makefile
···
@printf "%s\t" $@
@printf "\033[32m✓" || printf "\033[31m✗"
@printf "\033[m\n"
-
@nix run '.#system' -- switch
-
@nix run '.#home' -- switch
$(TARGETS): check
@printf "%s\t" $@
···
@printf "%s\t" $@
@printf "\033[32m✓" || printf "\033[31m✗"
@printf "\033[m\n"
+
@nix run '.'
$(TARGETS): check
@printf "%s\t" $@
+14 -45
README.md
···
-
Dotfiles
-
========
It is repository of my config files, created as backup in case of UFO/armageddon
or (which is less probably) loosing my data.
-
You can feel free to use it for yourself, and even contribute if you want. Just
-
suggest something in [issues](https://github.com/hauleth/dotfiles/issues) or
-
create pull request (no link because if you need it, I rather won't accept your
-
pull request).
-
-
![Screenshot](screenshot.png)
-
-
Installation
-
------------
-
-
Installation easy (but easier way will come in future):
-
-
1. Clone whole repo
-
$ git clone --recursive https://github.com/hauleth/dotfiles.git && cd dotfiles
-
2. Run
-
-
$ make
-
-
3. To install only some of the files use:
-
-
$ make <targets>
-
-
Available targets
-
-----------------
-
-
* `bin`
-
- `git cleanup`
-
* `fish`
-
* `git`
-
- global `.gitignore`
-
- NeoVim + Fugitive as mergetool
-
* `nvim`
-
- vim-plug
-
- bunch of plugins (check [`init.vim`](nvim/init.vim))
-
* `ruby`
-
- `.gemrc` (skip doc installation)
-
- `.pryrc`
-
* `utils`
-
- `ctags` with Rust config
-
- `.dir_colors` for Solarized theme
Copyrights
----------
-
Copyrights (c) 2013 [Łukasz Niemier][blog]
-
[t]: http://twitter.com/hauleth "Just follow me"
-
[blog]: http://lukasz.niemier.pl "Awesome Fantasy Rubist"
···
+
# dotfiles
It is repository of my config files, created as backup in case of UFO/armageddon
or (which is less probably) loosing my data.
+
## Installation
+
1. Install Nix
+
```sh
+
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
+
```
+
2. Run setup
+
```sh
+
nix run sourcehut:hauleth/dotfiles
+
```
+
NeoVim configuration is still not fully Nixified, so for that it is needed to
+
clone and run `make vim`, but hopefully that limitation will be lifted soon.
Copyrights
----------
+
Copyrights (c) 2023 [Łukasz Niemier][blog]
+
[blog]: https://hauleth.dev "Awesome Fantasy Rubist"