diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-12 11:48:29 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-12 11:48:29 +0100 |
| commit | 2a69d39260bdcc13473df84b5affe2732cc9eb85 (patch) | |
| tree | 9911b16263b00358093bd681caee8662d1e94905 | |
| parent | c7dd71eae646118780e29df79265823fc2c4f458 (diff) | |
| download | dotfiles-2a69d39260bdcc13473df84b5affe2732cc9eb85.tar.gz dotfiles-2a69d39260bdcc13473df84b5affe2732cc9eb85.tar.bz2 dotfiles-2a69d39260bdcc13473df84b5affe2732cc9eb85.zip | |
Switch theme to dracula, Updated qutebrowser never accept notifications
| -rw-r--r-- | .nanorc | 1 | ||||
| -rw-r--r-- | .pluggins.vim | 2 | ||||
| -rw-r--r-- | .vimrc | 20 | ||||
| -rw-r--r-- | .zshrc | 2 | ||||
| -rwxr-xr-x | install | 1 | ||||
| -rw-r--r-- | qutebrowser/config.py | 1 |
6 files changed, 16 insertions, 11 deletions
@@ -0,0 +1 @@ +include /usr/share/nano/c.nanorc diff --git a/.pluggins.vim b/.pluggins.vim index f5b2a4b..58b8b6f 100644 --- a/.pluggins.vim +++ b/.pluggins.vim @@ -32,7 +32,7 @@ call plug#begin() " themes " Plug 'joshdick/onedark.vim' " onedark - " Plug 'dracula/vim', {'as': 'vim'} " dracula + Plug 'dracula/vim', {'as': 'vim'} " dracula Plug 'altercation/vim-colors-solarized' " solarized " intresting but not used @@ -84,24 +84,24 @@ set nofoldenable " not folded by default " colorscheme onedark " }}} " dracula {{{ -" let g:dracula_bold = 1 -" let g:dracula_italic = 1 -" let g:dracula_colorterm = 0 -" colorscheme dracula +let g:dracula_bold = 1 +let g:dracula_italic = 1 +let g:dracula_colorterm = 0 +colorscheme dracula " }}} " solarized {{{ -set t_Co=16 -let g:solarized_termcolors=16 -let g:solarized_visibility='low' " visibility of invisible chars with set list -set background=dark -colorscheme solarized +" set t_Co=16 +" let g:solarized_termcolors=16 +" let g:solarized_visibility='low' " visibility of invisible chars with set list +" set background=dark +" colorscheme solarized " }}} " lightline {{{ let g:lightline = {} " let g:lightline.colorscheme = 'solarized' " lightline theme to solarized " let g:lightline.colorscheme = 'jellybeans' " lightline theme to onedark let g:lightline = { - \ 'colorscheme': 'solarized', + \ 'colorscheme': 'dracula', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] @@ -115,3 +115,5 @@ export MINISHELL_TEST_FLAGS=-DMINISHELL_TEST export PATH="$PATH:/home/charles/git/c_formatter_42" export MINIKUBE_IN_STYLE=false + +export WEBSERV_FLAGS=-DWEBSERV_CACHARLE @@ -23,6 +23,7 @@ create_dotfile_link_same() create_dotfile_link_same .zshrc create_dotfile_link_same .bashrc create_dotfile_link_same .vimrc +create_dotfile_link_same .nanorc create_dotfile_link_same .pluggins.vim create_dotfile_link grep.vim .vim/plugin/grep.vim diff --git a/qutebrowser/config.py b/qutebrowser/config.py index b4ca99e..0c33c53 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -58,6 +58,7 @@ c.colors.webpage.bg = 'black' # Disabling white flash before page lo # c.content.proxy = 'socks://localhost:9050/' # tor c.content.autoplay = False +c.content.notifications = False c.auto_save.session = True c.session.lazy_restore = True |
