this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update README

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