- Copy the contents of kdialog to
/usr/local/bin/kdialog - Copy the contents of
chrome_chooser.pyto~/.config/ranger/plugins/chrome_chooser.py - Optionally map appropriately
- Run chrome with
XDG_CURRENT_DESKTOP=KDE
- Neovim v0.4+
- Python 3.4+ and pynvim
- Kitty
- Zsh, but would probably work with any shell if configured properly
- Your favorite dark and light colorschemes
- Add below python script to
~/.config/kitty/folder. Make sure to make it executable (chmod +x ~/.config/kitty/colors) - Set up your dark/light colorscheme, and where to store kitty colors configuration (line 4 to 9)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- Move this file to your neovim lua runtime path ie. ~/.config/nvim/lua/au.lua | |
| -- | |
| local cmd = vim.api.nvim_command | |
| local function autocmd(this, event, spec) | |
| local is_table = type(spec) == 'table' | |
| local pattern = is_table and spec[1] or '*' | |
| local action = is_table and spec[2] or spec | |
| if type(action) == 'function' then |
OlderNewer
