Skip to content

Commit

Permalink
chore(nvim): add some netrw settings
Browse files Browse the repository at this point in the history
some changes in plugins list
  • Loading branch information
PrashanthaTP committed Nov 14, 2021
1 parent 6fd8bb5 commit 608c181
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
18 changes: 17 additions & 1 deletion AppData/Local/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ source $LOCALAPPDATA/nvim/plugs/fzf.vim
source $LOCALAPPDATA/nvim/plugs/goyo.vim
source $LOCALAPPDATA/nvim/plugs/lightline_v1.vim
source $LOCALAPPDATA/nvim/plugs/markdown.vim
"source $LOCALAPPDATA/nvim/plugs/nerdtree.vim
source $LOCALAPPDATA/nvim/plugs/nerdtree.vim

source $LOCALAPPDATA/nvim/plugs/telescope_plug.vim
"
Expand All @@ -39,5 +39,21 @@ source $LOCALAPPDATA/nvim/general/git.vim
source $LOCALAPPDATA/nvim/helpers/commands.vim

"hi Normal ctermbg=NONE guibg=NONE
"
hi Comment gui=italic cterm=italic
hi htmlArg gui=italic cterm=italic

let g:netrw_banner = 0
"let g:netrw_liststyle=3
let g:netrw_winsize=30
let g:netrw_list_hide = '^\.\.\=/\=$,.DS_Store,.idea,.git,__pycache__,venv,node_modules/,*\.o,*\.pyc,.*\.swp'
"let g:netrw_list_hide = '\(^\|\s\s\)\zs\.\S\+'
"let g:netrw_hide = 1
"let g:netrw_browse_split=2
"let g:netrw_list_hide= netrw_gitignore#Hide()
""\.',.*\.swp$'
""\.',*\.git'
""\.',*\node_modules'
"
"let g:netrw_list_hide= '.*\.swp$'
"let g:netrw_list_hide= netrw_gitignore#Hide().'.*\.swp$'
7 changes: 5 additions & 2 deletions AppData/Local/nvim/plugs/plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ call plug#begin(s:PLUGIN_DIR)
Plug 'morhetz/gruvbox'
"Plug 'sainnhe/gruvbox-material'
" NERD tree will be loaded on the first invocation of NERDTreeToggle command"
"Plug 'preservim/nerdtree',{ 'on': 'NERDTreeToggle'}
Plug 'preservim/nerdtree',{ 'on': 'NERDTreeToggle'}
"Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-commentary'
" Plug 'tpope/vim-vinegar'

Plug 'ryanoasis/vim-devicons'
" Track the engine.
Plug 'SirVer/ultisnips'
Expand All @@ -18,7 +20,7 @@ call plug#begin(s:PLUGIN_DIR)
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
"Plug 'nvim-lua/plenary.nvim'
"Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
"Plug 'w0rp/ale'
"Plug 'sheerun/vim-polyglot'
Expand All @@ -37,5 +39,6 @@ call plug#begin(s:PLUGIN_DIR)
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
Plug 'junegunn/goyo.vim'


call plug#end()
" }}}

0 comments on commit 608c181

Please sign in to comment.