Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusandre committed Apr 24, 2024
1 parent 7c07fb8 commit ebaf509
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/core"
tap "charmbracelet/tap"
brew "atuin"
brew "bandwhich"
brew "bash"
Expand All @@ -16,6 +17,7 @@ brew "dprint"
brew "eza"
brew "fd"
brew "fpp"
brew "freeze"
brew "fx"
brew "fzf"
brew "gh"
Expand Down
7 changes: 7 additions & 0 deletions Brewfile.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
},
"homebrew/core": {
"revision": "b54c33d4ddde74ff52caf847fa0a04c34df5f952"
},
"charmbracelet/tap": {
"revision": "47778facb3061161a7a7723be09bc8e9f3967f7b"
}
},
"brew": {
Expand Down Expand Up @@ -2940,6 +2943,10 @@
}
}
}
},
"freeze": {
"version": "0.1.6",
"bottle": false
}
},
"cask": {
Expand Down
1 change: 1 addition & 0 deletions nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"conform.nvim": { "branch": "master", "commit": "475c096d24562cf1fa992731869e17ea6d75d2d9" },
"diffview.nvim": { "branch": "main", "commit": "3dc498c9777fe79156f3d32dddd483b8b3dbd95f" },
"fidget.nvim": { "branch": "main", "commit": "1ba38e4cbb24683973e00c2e36f53ae64da38ef5" },
"freeze.nvim": { "branch": "main", "commit": "8512cebb305e50f4acca6e71bc3061149a5c61eb" },
"friendly-snippets": { "branch": "main", "commit": "ea068f1becd91bcd4591fceb6420d4335e2e14d3" },
"gitsigns.nvim": { "branch": "main", "commit": "035da036e68e509ed158414416c827d022d914bd" },
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
Expand Down
3 changes: 3 additions & 0 deletions nvim/lua/plugins/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ return {
{ name = 'path' },
{ name = 'buffer', keyword_length = 3 },
},
experimental = {
ghost_text = true,
},
})
end,
}
8 changes: 8 additions & 0 deletions nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,12 @@ return {
'jghauser/mkdir.nvim',
event = 'BufWritePre',
},
{
'ethanholz/freeze.nvim',
keys = {
{ '<leader>of', '<Cmd>Freeze<CR>', desc = 'Freeze', mode = 'v' },
{ '<leader>of', '<Cmd>FreezeLine<CR>', desc = 'Freeze', mode = 'n' },
},
config = true,
},
}
8 changes: 4 additions & 4 deletions wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ local config = wezterm.config_builder()
config.term = 'wezterm'

-- Text
-- config.font = wezterm.font('JetBrains Mono')
config.font = wezterm.font('Berkeley Mono')
config.font = wezterm.font('JetBrains Mono')
-- config.font = wezterm.font('Berkeley Mono')
-- config.font = wezterm.font('Input Mono Narrow')
config.font_size = 12
config.line_height = 1.125
config.font_size = 15
-- config.line_height = 1.125

config.term = 'wezterm'
config.set_environment_variables = {
Expand Down

0 comments on commit ebaf509

Please sign in to comment.