Skip to content

Commit fd4ae39

Browse files
committed
config: 🛠️ updates
1 parent cfb3726 commit fd4ae39

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

ghostty/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ working-directory = /Users/assafdori/code/assafdori/dotfiles
44
# -----------
55
font-family = "Berkeley Mono"
66
theme = koda-dark
7-
font-size = 14
7+
font-size = 13
88

99
# Custom background & opacity
1010
# background = #010101

nvim/lua/assafdori/config/options.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ o.clipboard = "unnamedplus" -- keep in sy
1212
o.cursorline = true -- highlight the current line
1313
o.cursorcolumn = false -- highlight the current column
1414
o.guicursor:append("a:blinkwait700-blinkon250-blinkoff400")
15-
o.wrap = true -- display lines as one long line
15+
o.wrap = false -- display lines as one long line
1616
o.dir = vim.fn.stdpath("data") .. "/swp" -- swap file directory
1717
o.swapfile = false -- disable swap files
1818
o.expandtab = true -- use spaces instead of tabs
@@ -31,9 +31,11 @@ o.mouse = "nv" -- enable mou
3131
o.relativenumber = true -- set relative numbered lines
3232
o.number = true -- set current line to display true number
3333
o.scrolloff = 10 -- Minimal number of screen lines to keep above and below the cursor
34+
o.sidescrolloff = 10 -- Minimal number of screen columns either side of cursor if wrap is `false`
3435
o.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
3536
o.shiftwidth = 2 -- the number of spaces inserted for each indentation
3637
o.smartcase = true -- Don't ignore case with capitals
38+
o.hlsearch = true -- highlight all matches on previous search pattern
3739
o.smartindent = true -- Insert indents automatically
3840
o.splitbelow = true -- force all horizontal splits to go below current window
3941
o.splitright = true -- force all vertical splits to go to the right of current window

nvim/lua/assafdori/plugins/ui.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ return {
9090
lazy = false, -- make sure we load this during startup if it is your main colorscheme
9191
priority = 1000, -- make sure to load this before all the other start plugins
9292
config = function()
93-
-- require("koda").setup({ transparent = true })
93+
require("koda").setup({ transparent = true })
9494
vim.cmd("colorscheme koda")
9595
end,
9696
},

0 commit comments

Comments
 (0)