summaryrefslogtreecommitdiff
path: root/src/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.def.h')
-rw-r--r--src/config.def.h45
1 files changed, 22 insertions, 23 deletions
diff --git a/src/config.def.h b/src/config.def.h
index b0f12a8..a58e520 100644
--- a/src/config.def.h
+++ b/src/config.def.h
@@ -17,7 +17,7 @@
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
-/* features */
+/* graphical features */
/* show wget style progressbar in status bar */
#define FEATURE_WGET_PROGRESS_BAR
/* show load progress in window title */
@@ -34,7 +34,6 @@
#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
@@ -51,12 +50,6 @@
#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 "about:blank"
-#define SETTING_DOWNLOAD_PATH "~/Downloads"
-/* cookie-accept allowed values always, origin, never */
-#define SETTING_COOKIE_ACCEPT "never"
-#define SETTING_HINT_KEYS "0123456789"
-#define SETTING_DOWNLOAD_COMMAND "/bin/sh -c \"curl -sLJOC - -e '$neovimb_URI' %s\""
#define SETTING_COMPLETION_CSS "color:#ffffff;background-color:#656565;font:" SETTING_GUI_FONT_NORMAL
#define SETTING_COMPLETION_HOVER_CSS "background-color:#777777;"
#define SETTING_COMPLETION_SELECTED_CSS "color:#f6f3e8;background-color:#888888;"
@@ -66,28 +59,34 @@
#define SETTING_STATUS_SSL_CSS "background-color:#95e454;color:#000000;"
#define SETTING_STATUS_SSL_INVLID_CSS "background-color:#ff7777;color:#000000;"
+/* hide input bar automatically */
+#define SETTING_HIDEINPUTBAR on
+
#define MAXIMUM_HINTS 500
/* default window dimensions */
#define WIN_WIDTH 800
#define WIN_HEIGHT 600
+/* dark mode */
+#define SETTING_DARK_MODE on
+/* browser features */
/* if set to 1 neovimb will check if the webextension could be found. */
#define CHECK_WEBEXTENSION_ON_STARTUP 1
-
-/* Auto Hide Input Bar */
-#define SETTING_HIDEINPUTBAR on
-
-/* Search Engine */
-#define SETTING_SEARCH_ENGINE "https://duckduckgo.com/html/?q=$0"
-
-/* User Agent */
+/* download folder */
+#define SETTING_DOWNLOAD_PATH "~/Downloads"
+/* home page */
+#define SETTING_HOME_PAGE "about:blank"
+/* search engine */
+#define SETTING_SEARCH_ENGINE "https://duckduckgo.com/?q=$0"
+/* user agent */
#define SETTING_USER_AGENT "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Safari/605.1.15 "
-
-/* Dark Mode */
-#define SETTING_DARK_MODE on
-
-/* Geolocation - always/ask/never */
+/* geolocation-accept allowed values always, ask, never */
#define SETTING_GEOLOCATION_ACCEPT "never"
-
-/* JavaScript */
+/* cookie-accept allowed values always, origin, never */
+#define SETTING_COOKIE_ACCEPT "never"
+/* javascript */
#define SETTING_JAVASCRIPT_ACCEPT on
+/* download command */
+#define SETTING_DOWNLOAD_COMMAND "/bin/sh -c \"curl -sLJOC - -e '$neovimb_URI' %s\""
+
+#define SETTING_HINT_KEYS "0123456789"