diff --git a/code/.config/Code - OSS/User/settings.json b/code/.config/Code - OSS/User/settings.json index fbbb26a..0688fc1 100644 --- a/code/.config/Code - OSS/User/settings.json +++ b/code/.config/Code - OSS/User/settings.json @@ -19,25 +19,39 @@ // Rendering "terminal.integrated.rendererType": "dom", "editor.renderWhitespace": "boundary", - "window.zoomLevel": 0.2, + "window.zoomLevel": 0, "vim.foldfix": true, // Fonts "terminal.integrated.fontFamily": "Roboto Mono", "editor.fontFamily": "'Roboto Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", "editor.fontSize": 15, + + // Vim + "vim.normalModeKeyBindings": [ + { + "before":["g", "c"], + "commands": ["editor.action.commentLine"] + } + ], + // Gay colors "workbench.colorTheme": "Material Theme Darker High Contrast", "materialTheme.accent": "Red", "workbench.iconTheme": "material-icon-theme", "material-icon-theme.folders.color": "#cc5757", + "vim.statusBarColorControl": true, + "vim.statusBarColors.insert": ["#cc5757", "#fff"], + "vim.statusBarColors.normal": ["#202020", "#fff"], + "vim.statusBarColors.visual": ["#5757cc", "#fff"], + "vim.statusBarColors.visualblock": ["#5757cc", "#fff"], + "vim.statusBarColors.visualline": ["#5757cc", "#fff"], + "vim.statusBarColors.replace": ["#DD2020", "#fff"], "workbench.colorCustomizations": { - "statusBar.foreground": "#ffffff", - "statusBar.background": "#cc5757", "editorCursor.background": "#fff", - "editorCursor.foreground": "#cc5757dd", "editor.background": "#202020", "editorWhitespace.foreground": "#303030", + "editorCursor.foreground": "#cc5757dd", "activityBarBadge.background": "#cc5757", "list.activeSelectionForeground": "#cc5757", "list.inactiveSelectionForeground": "#cc5757", @@ -58,6 +72,10 @@ "menu.selectionForeground": "#cc5757", "menubar.selectionForeground": "#cc5757", "editor.findMatchBorder": "#cc5757", - "selection.background": "#cc575740" + "selection.background": "#cc575740", + "statusBar.background": "#202020", + "statusBar.noFolderBackground": "#202020", + "statusBar.debuggingBackground": "#202020", + "statusBar.foreground": "#fff" }, } diff --git a/gtk/.config/dconf/user b/gtk/.config/dconf/user new file mode 100644 index 0000000..a88698b Binary files /dev/null and b/gtk/.config/dconf/user differ diff --git a/gtk/.config/gtk-3.0/settings.ini b/gtk/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..65cdb29 --- /dev/null +++ b/gtk/.config/gtk-3.0/settings.ini @@ -0,0 +1,18 @@ +[Settings] +gtk-application-prefer-dark-theme=0 +gtk-button-images=1 +gtk-cursor-theme-name=capitaine-cursors +gtk-fallback-icon-theme=ePapirus +gtk-font-name=Roboto 12 +gtk-icon-theme-name=Papirus-Dark +gtk-menu-images=1 +gtk-primary-button-warps-slider=0 +gtk-theme-name=oomox-arc-dark +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-cursor-theme-size=0 +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull diff --git a/gtk/.gtkrc-2.0 b/gtk/.gtkrc-2.0 new file mode 100644 index 0000000..2652ad6 --- /dev/null +++ b/gtk/.gtkrc-2.0 @@ -0,0 +1,18 @@ +# DO NOT EDIT! This file will be overwritten by LXAppearance. +# Any customization should be done in ~/.gtkrc-2.0.mine instead. + +include "/home/lelgenio/.gtkrc-2.0.mine" +gtk-theme-name="oomox-arc-dark" +gtk-icon-theme-name="Papirus-Dark" +gtk-font-name="Roboto 12" +gtk-cursor-theme-name="capitaine-cursors" +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle="hintfull" diff --git a/zsh/.zshrc b/zsh/.zshrc index 4eaa2f2..665606f 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1,9 +1,4 @@ export QT_QPA_PLATFORMTHEME=qt5ct -export QPA_PLATFORM=wayland -export MOZ_ENABLE_WAYLAND=1 -export DOTNET_CLI_TELEMETRY_OPTOUT=1 -export XCURSOR_THEME=capitaine-cursors -export XDG_CURRENT_DESKTOP=Unity export PATH=$PATH:~/.local/bin export EDITOR=nvim