commit 93bd25d3bdad81bd12087d001f08c3b2ebce5a01
parent df13bb9d431f19d1122b08539ec77188e3d7a703
Author: Andrew Laack <andrew@laack.co>
Date: Fri, 29 May 2026 23:31:24 -0500
Updated readme
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -9,11 +9,10 @@ To install you should just need to clone the repo to ~/.config/nvim. You might a
## Fonts
-To set up fonts, you need to install set the correct font and assign it to the terminal. I am using xfce4-terminal right now with a cattpuccin theme. I downloaded and extracted the jetbrains mono font from nerd fonts so it has icons built in. I then moved it to /usr/local/share/fonts/jetbrains (best practice to make folder for each installed font) and then ran a command to re-sync the installed fonts. From here I right clicked the terminal and set the terminal font correctly. I was running into an issue earlier where icons would not load so I installed the nerd font instead of the official jetbrains one.
+To set up fonts, you need to install set the correct font and assign it to the terminal. I am using st right now with my own configuration. I downloaded and extracted the jetbrains mono font from nerd fonts so it has icons built in. I then moved it to /usr/local/share/fonts/jetbrains (best practice to make folder for each installed font) and then ran a command to re-sync the installed fonts. From here I right clicked the terminal and set the terminal font correctly. I was running into an issue earlier where icons would not load so I installed the nerd font instead of the official jetbrains one.
I prefer the extralight font (standard not nl) with a font size of 15.
## Terminal
-I had trouble with alacritty and their stupid toml file for colors so I ditched them. I tried gnome-terminal, but they didn't support the font I wanted. I used lxterminal for a while, but that one is weird because each terminal window is the same process which made swape files and vim annoying AF. I then tried kitty which is too slow and I also tried terminator which was as well. Given all of this, I settled on xfce4-terminal.
-
+I had trouble with alacritty and their stupid toml file for colors so I ditched them. I tried gnome-terminal, but they didn't support the font I wanted. I used lxterminal for a while, but that one is weird because each terminal window is the same process which made swape files and vim annoying AF. I then tried kitty which is too slow and I also tried terminator which was as well. Given all of this, I settled on st.
diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua
@@ -138,7 +138,7 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config
-- https://github.com/ggml-org/llama.vim/blob/master/autoload/llama.vim
-- I cleared some of these shortcuts because it tried to use leader key... :(
- --
+
vim.g.llama_config = {
endpoint_fim = 'http://mbp.local:8012/infill',
api_key = os.getenv('LLAMA_API_KEY') or '',
@@ -159,6 +159,7 @@ require("luasnip").config.set_config({ -- Setting LuaSnip config
-- needed for icons for telescope
-- use("nvim-tree/nvim-web-devicons")
+
-- Wiki plugin for creating files and stuff for note taking.
use{"lervag/wiki.vim", commit = "2acd05d2f1e5bb0fb094621a865879982c87a9cf"}