diff options
Diffstat (limited to '.config/customs/neovimb')
-rw-r--r-- | .config/customs/neovimb | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/.config/customs/neovimb b/.config/customs/neovimb deleted file mode 100644 index 6c213a4..0000000 --- a/.config/customs/neovimb +++ /dev/null @@ -1,63 +0,0 @@ -/* features */ -/* show wget style progressbar in status bar */ -#define FEATURE_WGET_PROGRESS_BAR -/* show load progress in window title */ -#define FEATURE_TITLE_PROGRESS -/* show page title in url completions */ -#define FEATURE_TITLE_IN_COMPLETION -/* enable the read it later queue */ -#define FEATURE_QUEUE -/* disable X window embedding */ -/* #define FEATURE_NO_XEMBED */ - -#ifdef FEATURE_WGET_PROGRESS_BAR -/* chars to use for the progressbar */ -#define PROGRESS_BAR "=> " -#define PROGRESS_BAR_LEN 20 -#endif - -#define FEATURE_AUTOCMD - -/* time in seconds after that message will be removed from inputbox if the - * message where only temporary */ -#define MESSAGE_TIMEOUT 5 - -/* number of chars to be shown in statusbar for ambiguous commands */ -#define SHOWCMD_LEN 10 -/* css applied to the gui elements regardless of user's settings */ -#define GUI_STYLE_CSS_BASE "#input text{background-color:inherit;color:inherit;caret-color:@color;font:inherit;}" - -/* default font size for fonts in webview */ -#define SETTING_DEFAULT_FONT_SIZE 16 -#define SETTING_DEFAULT_MONOSPACE_FONT_SIZE 13 -#define SETTING_GUI_FONT_NORMAL "10pt monospace" -#define SETTING_GUI_FONT_EMPH "bold 10pt monospace" -#define SETTING_HOME_PAGE "https://rafa_99.gitlab.io/" - -#define MAXIMUM_HINTS 500 -/* default window dimensions */ -#define WIN_WIDTH 800 -#define WIN_HEIGHT 600 - -/* if set to 1 neovimb will check if the webextension could be found. */ -#define CHECK_WEBEXTENSION_ON_STARTUP 1 - -/* Set default download folder */ -#define DOWNLOAD_FOLDER "~/Downloads" - -/* Set default keybinds */ -#define HINTOPEN 'f' -#define HINTOPENTAB 'F' -#define NEWTABLINK 't' -#define NEWTABCURLINK 'T' -#define PREVIOUSPAGE CTRL('O') -#define REFRESH 'r' -#define FORCEREFRESH 'R' -#define STOPLOADING CTRL('C') -#define SEARCHFROMCLIPBOARDNEWTAB 'P' -#define NEWTAB 'U' -#define CLOSETAB 'u' -#define COPYCLIPBOARDSELECT '*' -#define YANK 'Y' -#define INPUTMODE 'i' -#define NORMALMODE CTRL('[') |