diff --git a/git/.config/git/config b/git/.config/git/config index 110dea7..67bc224 100644 --- a/git/.config/git/config +++ b/git/.config/git/config @@ -14,3 +14,6 @@ autosquash = true [diff] colorMoved = zebra +[user] + email = owestness@gmail.com + name = vx-clutch diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index 0616ece..c239721 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -1,3 +1,5 @@ +vim.cmd.colorscheme("vim") + vim.g.mapleader = " " vim.keymap.set("n", "", "") vim.keymap.set("n", "", "") @@ -18,31 +20,11 @@ vim.keymap.set("v", "K", ":m '<-2gv=gv") vim.keymap.set({ 'n', 'v', 'x' }, 'd', '"+d') vim.keymap.set({ 'n', 'v', 'x' }, 'y', '"+y') -vim.cmd("set nocompatible") -- force 'nocompatible', like modern Vim -vim.cmd("syntax off") -vim.o.background = "dark" -vim.o.clipboard = "unnamedplus" -vim.o.cmdheight = 1 -vim.o.expandtab = false -vim.o.hlsearch = false -vim.o.ignorecase = false -vim.o.incsearch = false -vim.o.laststatus = 1 vim.o.number = true vim.o.relativenumber = true -vim.o.ruler = true -vim.o.shiftwidth = 8 -vim.o.showcmd = true -vim.o.showmode = true -vim.o.showtabline = 0 -vim.o.smartcase = false -vim.o.statusline = "" vim.o.swapfile = false -vim.o.tabstop = 8 -vim.o.termguicolors = false -vim.o.wildmenu = false -vim.o.winborder = "rounded" vim.o.wrap = false +vim.opt.wildoptions = {} vim.opt.path:append("**") vim.keymap.set("i", "me::", function() diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml index 1a6b621..15cec94 100644 --- a/starship/.config/starship.toml +++ b/starship/.config/starship.toml @@ -1,20 +1,3 @@ add_newline = false -# format = """ -# [==> ](red)$directory$git_branch$character -# """ -format = """ -$directory$git_branch$git_status -; -""" -# format = "" - -[directory] -truncation_length = 2 -style = "#008080" - -[git_status] -ahead = '⇡${count}' -diverged = '⇕⇡${ahead_count}⇣${behind_count}' -behind = '⇣${count}' -staged = '[++\($count\)](green)' +format = "$git_status$directory" diff --git a/wezterm/.wezterm.lua b/wezterm/.wezterm.lua index b57c39c..4d6b77d 100644 --- a/wezterm/.wezterm.lua +++ b/wezterm/.wezterm.lua @@ -13,6 +13,8 @@ if wezterm.target_triple:find("windows") then } end +config.scrollback_lines = 3500 + config.enable_tab_bar = false config.window_padding = { left = 0, @@ -24,7 +26,7 @@ config.window_padding = { config.font = wezterm.font("ComicShannsMono Nerd Font") config.font_size = 20.0 -config.front_end = "WebGpu" -config.window_decorations = "RESIZE" +-- config.front_end = "WebGpu" +-- config.window_decorations = "RESIZE" return config