install neovim script

modify pager theme
This commit is contained in:
Paul Trowbridge 2024-11-05 19:42:26 -05:00
parent e1056d8d54
commit 0e4472b156
2 changed files with 6 additions and 6 deletions

View File

@ -27,12 +27,7 @@ last_row_search = true
progressive_load_mode = true progressive_load_mode = true
highlight_odd_rec = true highlight_odd_rec = true
hide_header_line = false hide_header_line = false
on_exit_reset = false theme = 0
on_exit_clean = false
on_exit_erase_line = false
on_exit_sgr0 = false
direct_color = false
theme = 18
border_type = 2 border_type = 2
default_clipboard_format = 0 default_clipboard_format = 0
clipboard_app = 0 clipboard_app = 0

5
install_neovim.sh Executable file
View File

@ -0,0 +1,5 @@
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
sudo rm -rf /opt/nvim
sudo tar -C /opt -xzf nvim-linux64.tar.gz
export PATH="$PATH:/opt/nvim-linux64/bin"