diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-04-29 13:15:21 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-04-29 13:17:03 +0900 |
| commit | ccede0260ddc24665e28042d26a5260d5e190920 (patch) | |
| tree | 1b2cf270b9bcb76327cd4f71135c76e183f0ae21 | |
| parent | ec19f6c9ef020d78905eadceb4b8e664fb9ea668 (diff) | |
| download | dotfiles-ccede0260ddc24665e28042d26a5260d5e190920.tar.gz dotfiles-ccede0260ddc24665e28042d26a5260d5e190920.tar.zst dotfiles-ccede0260ddc24665e28042d26a5260d5e190920.zip | |
newsboat: initial setup
| -rw-r--r-- | .config/newsboat/config | 11 | ||||
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | INSTALL.txt | 2 | ||||
| -rw-r--r-- | TODO | 3 | ||||
| -rwxr-xr-x | setup.sh | 13 |
5 files changed, 25 insertions, 5 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config new file mode 100644 index 0000000..1ce64f2 --- /dev/null +++ b/.config/newsboat/config @@ -0,0 +1,11 @@ +refresh-on-startup yes +reload-threads 10 +show-read-feeds no +show-read-articles no + +bind-key j down +bind-key k up +bind-key J next-feed +bind-key K prev-feed +bind-key g home +bind-key G end @@ -1,3 +1,4 @@ /.config/alacritty/alacritty.local.yml /.config/emacs +/.config/newsboat/urls /nvim-startup.log diff --git a/INSTALL.txt b/INSTALL.txt index fa63cfa..e394886 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -13,6 +13,7 @@ $ brew install \ jq \ ncurses \ neovim \ + newsboat \ pandoc \ python \ ripgrep \ @@ -59,6 +60,7 @@ $ sudo apt install \ jq \ keepassxc \ neovim \ + newsboat \ pandoc \ python \ ripgrep \ @@ -1,2 +1,5 @@ nvim 0.7 https://github.com/neovim/neovim/releases/tag/v0.7.0 + +newsboat + Share "urls" file between machines without opening the content @@ -22,6 +22,7 @@ for name in \ bat \ emacs \ git \ + newsboat \ nvim \ ; \ do @@ -31,11 +32,13 @@ do fi done -echo "symlink: ~/.config/alacritty/alacritty.local.yml" -if [[ "$(uname)" == "Darwin" ]]; then - ln -s -f ~/.config/alacritty/alacritty.macos.yml ~/.config/alacritty/alacritty.local.yml -else - ln -s -f ~/.config/alacritty/alacritty.linux.yml ~/.config/alacritty/alacritty.local.yml +if [ ! -f ~/.config/alacritty/alacritty.local.yml ]; then + echo "symlink: ~/.config/alacritty/alacritty.local.yml" + if [[ "$(uname)" == "Darwin" ]]; then + ln -s -f ~/.config/alacritty/alacritty.macos.yml ~/.config/alacritty/alacritty.local.yml + else + ln -s -f ~/.config/alacritty/alacritty.linux.yml ~/.config/alacritty/alacritty.local.yml + fi fi paq_dir="${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/pack/paqs/start/paq-nvim |
