Skip to content

Commit

Permalink
makes it a bit pretty and adds a nice readme
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Feb 26, 2024
1 parent 190afdb commit 66507e8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
# harry's dotfiles

womp womp
my dotfiles! uses [https://www.chezmoi.io/](chezmoi) to keep stuff organised, which is why this branch looks kinda funny! if you wanna see what the dotfiles look like after being processed, check out the [https://github.com/harryob/dotfiles/tree/compiled](compiled output branch), which is more or less what all these files end up looking like (on a MacOS install, that is)

chezmoi allows us a one line install for the dotfiles, which is very neat. as part of the install process, we also install chezmoi, so we can cleanup this utility after its been used to bootstrap itself

```sh
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply harryob
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply harryob -P
```
# text editor

i use [./dot_config/nvim](neovim) as my text editor, supplemented by vscode for some funny niche languages without a neovim lsp

# wezterm

i love this terminal editor more than anything - and it's got a very minimal config (once you've parsed how to make a config) - that lives [./dot_config/wezterm/wezterm.lua](here)

# theme

primarily nord - particularly the [https://github.com/EdenEast/nightfox.nvim](nightfox.nvim) nordfox for neovim
4 changes: 2 additions & 2 deletions dot_config/nvim/lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ return {
end,
},
window = {
-- completion = cmp.config.window.bordered(),
-- documentation = cmp.config.window.bordered(),
completion = cmp.config.window.bordered(),
documentation = cmp.config.window.bordered(),
},
mapping = cmp.mapping.preset.insert({
["<C-b>"] = cmp.mapping.scroll_docs(-4),
Expand Down

0 comments on commit 66507e8

Please sign in to comment.