Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions lua/archvim/custom.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ end
if require'archvim.options'.transparent_color then
vim.cmd [[
augroup colorscheme_mock
autocmd!
autocmd ColorScheme * hi Normal guibg=none | hi def link LspInlayHint Comment
" autocmd!
" autocmd ColorScheme * hi Normal guibg=none | hi def link LspInlayHint Comment
" \ | hi LspReferenceText guibg=none
" \ | hi LspReferenceRead guibg=none
" \ | hi LspReferenceWrite guibg=none
Expand All @@ -30,7 +30,8 @@ end

vim.cmd [[
" silent! colorscheme zephyr
silent! colorscheme gruvbox
" silent! colorscheme gruvbox
silent! colorscheme dawnfox
]]

-- More custom options goes here
8 changes: 8 additions & 0 deletions lua/archvim/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,14 @@ return packer.startup(function (use)
for _, item in ipairs(plugins) do
use(item)
end
-- go
use "ray-x/go.nvim"
use "ray-x/guihua.lua"
-- go
-- colortheme
use "EdenEast/nightfox.nvim"
-- colortheme

if is_packer_bootstrap then
-- if archvim_predownload == 1 then
-- local install_path = vim.fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
Expand Down
5 changes: 3 additions & 2 deletions scripts/install_nvim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ if [ "x$(uname -sm)" = "xLinux x86_64" ]; then
if which snap >/dev/null 2>&1; then
sudo snap remove nvim || true
fi
test -f ./nvim.appimage || curl -SL https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.appimage -o ~/.config/nvim/nvim.appimage
test -f ./nvim.appimage || curl -SL https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.appimage -o ./nvim.appimage
sudo chmod +x ./nvim.appimage
test -f /usr/bin/nvim && sudo mv /usr/bin/nvim /tmp/.nvim-executable-backup || true
sudo cp ./nvim.appimage /usr/bin/nvim
/usr/bin/nvim --version || fix_nvim_appimage
if [ "x$(uname -sm)" = "xLinux aarch64" ]; then
elif [ "x$(uname -sm)" = "xLinux aarch64" ]; then
if which snap >/dev/null 2>&1; then
sudo snap remove nvim || true
fi
Expand All @@ -65,3 +65,4 @@ else
sudo snap install nvim
fi
fi