From 66507e89cc8a38a10c156206710e545ef21bca62 Mon Sep 17 00:00:00 2001 From: harryob <55142896+harryob@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:24:36 +0000 Subject: [PATCH] makes it a bit pretty and adds a nice readme --- README.md | 17 +++++++++++++++-- dot_config/nvim/lua/plugins/lsp.lua | 4 ++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6a4fb67..9eef2be 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/dot_config/nvim/lua/plugins/lsp.lua b/dot_config/nvim/lua/plugins/lsp.lua index 7cbf2d0..9a014d6 100644 --- a/dot_config/nvim/lua/plugins/lsp.lua +++ b/dot_config/nvim/lua/plugins/lsp.lua @@ -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({ [""] = cmp.mapping.scroll_docs(-4),