All the current pieces that make up a glorious setup.
- 2x [Samsung 970 EVO NVMe][NVMe] (1TB, 500GB)
- 2x [Samsung 850 EVO 250GB][SSD]
- [ZOTAC GAMING GeForce RTX 2080 Ti AMP, 11GB][GPU]
- [Corsair CS550M Modular 80 Plus Gold][Power]
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'pathname' | |
| require 'csv' | |
| if ARGV.empty? || ARGV[0].empty? || ARGV[1].empty? | |
| puts 'Usage: split <file> <number-of-files-to-create>' | |
| end | |
| file = begin |
| " Basic settings | |
| set smoothscroll | |
| set noautofocus | |
| set noregexp | |
| let scrollduration=200 | |
| let mapleader = "<Space>" | |
| let barposition = "bottom" | |
| " Set up search engines |
| # depends on fzf and ag | |
| function search_file_contents() { | |
| ag --nobreak --numbers --column --noheading . | \ | |
| fzf --exact --delimiter=: --nth=2.. | \ | |
| cut -d : -f 1-2 | \ | |
| xargs -n 1 code -g $1 | |
| } | |
| alias f=search_file_contents | |
| # without leaving fzf (pressing enter) |
| { | |
| // editor configuration | |
| "breadcrumbs.enabled": true, | |
| "editor.autoClosingBrackets": "never", | |
| "editor.autoClosingQuotes": "never", | |
| "editor.fontFamily": "SF Mono, Roboto Mono Medium for Powerline, Menlo, monospace", | |
| "editor.fontSize": 14, | |
| "editor.lineHeight": 24, | |
| "editor.occurrencesHighlight": false, | |
| "editor.quickSuggestionsDelay": 0, |