From 0e4472b15661c13a6febf1bee4402d077e886b2d Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Tue, 5 Nov 2024 19:42:26 -0500 Subject: [PATCH] install neovim script modify pager theme --- dotfiles/.pspgconf | 7 +------ install_neovim.sh | 5 +++++ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100755 install_neovim.sh diff --git a/dotfiles/.pspgconf b/dotfiles/.pspgconf index b1f6cd4..3b8ce36 100644 --- a/dotfiles/.pspgconf +++ b/dotfiles/.pspgconf @@ -27,12 +27,7 @@ last_row_search = true progressive_load_mode = true highlight_odd_rec = true hide_header_line = false -on_exit_reset = false -on_exit_clean = false -on_exit_erase_line = false -on_exit_sgr0 = false -direct_color = false -theme = 18 +theme = 0 border_type = 2 default_clipboard_format = 0 clipboard_app = 0 diff --git a/install_neovim.sh b/install_neovim.sh new file mode 100755 index 0000000..400e147 --- /dev/null +++ b/install_neovim.sh @@ -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"