diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-08 16:38:30 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-08 16:38:30 +0530 |
commit | f94c1202afce479d61ff833d8cd05fe417c98288 (patch) | |
tree | 8fd0da2ca4fc57f90c194757cb77628edc0b9852 /.config/nvim | |
parent | 5db7f0e0671acfb9d03145d21a3645c80efc167e (diff) |
enabled golang and other modules in starship, trying to push to this repo after messing everything up
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/init.vim | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim deleted file mode 100644 index 9b2bb27..0000000 --- a/.config/nvim/init.vim +++ /dev/null @@ -1,85 +0,0 @@ -call plug#begin('~/local/share/nvim/plugged') - -" find a better plugin to do this -" which works with tsx and -" doesn't interfere with coc-pairs -Plug 'alvan/vim-closetag' - -Plug 'itchyny/lightline.vim' -Plug 'Yggdroot/indentLine' -Plug 'neoclide/coc.nvim', {'branch': 'release'} -Plug 'romgrk/doom-one.vim' -Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } -Plug 'maxmellon/vim-jsx-pretty' -Plug 'yuezk/vim-js' - - -" Plug 'leafgarland/typescript-vim' -" Plug 'vim-airline/vim-airline' -" Plug 'dracula/vim', { 'as': 'dracula' } -" Plug 'sts10/vim-pink-moon' - -call plug#end() - -" closetag config -let g:closetag_filenames = '*.html,*.xhtml,*.phtml' -let g:closetag_xhtml_filenames = '*.xhtml,*.jsx' -let g:closetag_filetypes = 'html,xhtml,phtml' -let g:closetag_xhtml_filetypes = 'xhtml,jsx' -let g:closetag_emptyTags_caseSensitive = 1 -let g:closetag_regions = { - \ 'typescript.tsx': 'jsxRegion,tsxRegion', - \ 'javascript.jsx': 'jsxRegion', - \ } -let g:closetag_shortcut = '>' -let g:closetag_close_shortcut = '<leader>>' - -let g:indentLine_color_term = 239 - -" coc config -let g:coc_global_extentions = [ - \ 'coc-snippets', - \ 'coc-pairs', - \ 'coc-eslint', - \ 'coc-prettier', - \ 'coc-go', - \ 'coc-json', - \ 'coc-tsserver', - \ 'coc-css', - \ 'coc-html', - \ ] - -" line numbers -set number -set nu - -" colorscheme config -colorscheme doom-one -set termguicolors -syntax enable - -" remove vim status because lightline replaces it -set noshowmode - -" lightline config -" colorscheme wombat for lightline -let g:lightline = { - \ 'colorscheme': 'darcula' - \ } - -" hexokinase config -let g:Hexokinase_highlighters = ['virtual'] - -" jsx-pretty config -let g:vim_jsx_pretty_highlight_close_tag = 1 -let g:vim_jsx_pretty_colorful_config = 1 - -" set filetypes as typescriptreact -" augroup SyntaxSettings -" autocmd! -" autocmd BufNewFile,BufRead *.tsx set filetype=typescript -" augroup END - - -" colors and theming (copied from DT's config) -highlight LineNr ctermfg=1 ctermbg=none cterm=none |