Skip to content

Commit

Permalink
Add zoxide and neovide support
Browse files Browse the repository at this point in the history
  • Loading branch information
kimond committed Sep 12, 2024
1 parent 152815c commit ef663ca
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
3 changes: 3 additions & 0 deletions neovide/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[font]
normal = ['JetBrains Mono']
size = 10
4 changes: 3 additions & 1 deletion nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@
"telescope-terraform.nvim": { "branch": "main", "commit": "072c97023797ca1a874668aaa6ae0b74425335df" },
"telescope.nvim": { "branch": "master", "commit": "fe999db6e0c39c8984519ead75660e0e2d3245d3" },
"todo-comments.nvim": { "branch": "main", "commit": "319c01b99b7a8c9ac2066bf0efd4d6ec68fef444" },
"toggleterm.nvim": { "branch": "main", "commit": "48be57eaba817f038d61bbf64d2c597f578c0827" },
"tokyonight.nvim": { "branch": "main", "commit": "4b386e66a9599057587c30538d5e6192e3d1c181" },
"trouble.nvim": { "branch": "main", "commit": "6efc446226679fda0547c0fd6a7892fd5f5b15d8" },
"ts-comments.nvim": { "branch": "main", "commit": "98d7d4dec0af1312d38e288f800bbf6ff562b6ab" },
"venv-selector.nvim": { "branch": "regexp", "commit": "c9d638f76ec9e31a46839d6bc12677dbafd73389" },
"vim-wakatime": { "branch": "master", "commit": "53bba6bb8342de9cbdafc82142a9b5e82008d858" },
"which-key.nvim": { "branch": "main", "commit": "bfec3d6bc0a9b0b2cb11644642f78c2c3915eef0" }
"which-key.nvim": { "branch": "main", "commit": "bfec3d6bc0a9b0b2cb11644642f78c2c3915eef0" },
"zoxide.vim": { "branch": "master", "commit": "b1e70b6fc1682a83929aee63680d2b43456fe9a5" }
}
3 changes: 1 addition & 2 deletions nvim/lazyvim.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@
"NEWS.md": "6520"
},
"version": 6
}

}
6 changes: 6 additions & 0 deletions nvim/lua/config/options.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here

-- Neovide options
if vim.g.neovide then
vim.g.neovide_cursor_vfx_mode = "railgun"
vim.opt.termguicolors = true
end
3 changes: 3 additions & 0 deletions nvim/lua/plugins/zoxide.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
return {
"nanotee/zoxide.vim",
}

0 comments on commit ef663ca

Please sign in to comment.