changed to dark theme
authorGeorgios Atheridis <atheridis@tutamail.com>
Sun, 29 May 2022 09:44:55 +0000 (12:44 +0300)
committerGeorgios Atheridis <atheridis@tutamail.com>
Sun, 29 May 2022 09:44:55 +0000 (12:44 +0300)
coc-settings.json
plug_settings/nerdtree/settings.vim
plug_settings/theme/color.vim
vim_settings/mappings.vim
vim_settings/plugins.vim

index 75ea7b6ddc532d4c05eb5959be2447c0cb348c99..35a32160e7a6982a8dfd4e17deae0f97ef23a865 100644 (file)
@@ -44,6 +44,7 @@
             "args": [
                 "--ignore=E402,C901,W503,W504,E116,E702,C0103,C0114,C0115,C0116,C0103,C0301,W0613,W0102,R0903,R0902,R0914,R0915,R0205,W0703,W0702,W0603",
                 "--format=%(row)d,%(col)d,%(code).1s,%(code)s: %(text)s",
+                "--max-line-length=88",
                 "-"
             ],
             "offsetLine": 0,
index 843fd0cc5061265d77f13bdc05157b8c71cd21f3..e02692fb321a5a75adacdbbc28a7f0b8a272add5 100644 (file)
@@ -1,2 +1,22 @@
 let g:NERDTreeGitStatusUseNerdFonts = 1
 let g:NERDTreeHighlightCursorline = 0
+let g:NERDTreeShowHidden = 0
+
+let g:NERDTreeIgnore = [
+    \ '__pycache__',
+    \ '.\.so',
+    \ 'build',
+    \ 'develop-eggs',
+    \ 'dist',
+    \ 'downloads',
+    \ 'eggs',
+    \ '.\.egg-info',
+    \ '__pypackages__',
+    \ '\.env',
+    \ '\.venv',
+    \ 'env',
+    \ 'venv',
+    \ 'ENV',
+    \ 'env\.bak',
+    \ 'venv\.bak'
+\]
index e09a91b06794fce30a60a4b1bbc929c0f22b3cac..973ad9feb5018cacc3f322ce26b5a5db00c15d80 100644 (file)
@@ -1,3 +1,3 @@
-set background=light
-colo PaperColor
-let g:airline_theme='papercolor'
+set background=dark
+colo pop-punk
+let g:airline_theme='pop_punk'
index 7df71f8735cbc5ff909dbde338de95edb802db7b..3ed4d0abffd22424acb10d036b90bd43a633dce9 100644 (file)
@@ -62,3 +62,5 @@ inoremap <C-M-j> <C-Down>
 inoremap <C-M-k> <C-Up>
 inoremap <C-M-l> <C-Right>
 
+" Re-source vim
+inoremap <M-CR> :source ~/.config/nvim/init.vim
index 72a7d13ddf77a5d9dcfd7fffbf40c5e475764254..10ae31fc9f1c3be8dcddd2cfd3def6b522c31eba 100644 (file)
@@ -17,6 +17,10 @@ call plug#begin()
     Plug 'Xuyuanp/nerdtree-git-plugin'
     Plug 'PhilRunninger/nerdtree-visual-selection'
 
+    " Bar
+    Plug 'vim-airline/vim-airline'
+    Plug 'vim-airline/vim-airline-themes'
+
     " Auto pairs for '(' '[' '{'
     Plug 'jiangmiao/auto-pairs'
 
@@ -46,13 +50,18 @@ call plug#begin()
     Plug 'tpope/vim-fugitive'
 
     " Themes
+    " PaperColor
     Plug 'NLKNguyen/papercolor-theme'
-    Plug 'vim-airline/vim-airline'
-    Plug 'vim-airline/vim-airline-themes'
+
+    " Pop-punk
+    Plug 'bignimbus/pop-punk.vim'
 
     " Jinja Support
     Plug 'lepture/vim-jinja'
 
+    " For Python f string highlighting
+    Plug 'sheerun/vim-polyglot'
+
 call plug#end()
 
 " Coc List