Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fedora environment #12

Merged
merged 8 commits into from
Mar 10, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enable golang and JS plugins and filetype scripts in .vimrc
  • Loading branch information
jeremy-hanna committed Feb 15, 2020
commit 4d500da62268505c30fc8e205e48d5a85d1bc9d5
8 changes: 4 additions & 4 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Plug 'ntpeters/vim-better-whitespace'
" Plug 'vim-airline/vim-airline'
" --- Ruby ---
" --- GoLang ---
" Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " GoLang editing improvments
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " GoLang editing improvments
" --- React ---
" Plug 'maxmellon/vim-jsx-pretty' " syntax highlighting for jsx
" Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
Plug 'maxmellon/vim-jsx-pretty' " syntax highlighting for jsx
Plug 'prettier/vim-prettier', { 'do': 'npm install' }
" --- Misc Formatting ---
" Plug 'hashivim/vim-terraform'
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will need to uncomment this when I get to working on tf again

call plug#end()
Expand Down Expand Up @@ -60,7 +60,7 @@ if !exists("autocommands_loaded")
au Filetype ruby source ~/.vim/scripts/ruby.vim
au Filetype go source ~/.vim/scripts/go.vim
au FileType sh,python let b:comment_leader = '# '
au FileType javascript source ~/.vim/scripts/js.vim
au FileType javascript,javascriptreact source ~/.vim/scripts/js.vim
au FileType vim let b:comment_leader = '" '
au BufRead,BufNewFile *.tf* source ~/.vim/scripts/terraform.vim
au BufNewFile,BufRead *.bib set filetype=markdown " this sets syntax and ctag checking to markdown
Expand Down