You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

52 lines
861 B

  1. " My nvim configuration =)
  2. set hidden
  3. set number
  4. set tabstop=4
  5. set shiftwidth=4
  6. set expandtab
  7. set autoindent
  8. set conceallevel=0
  9. set nofoldenable
  10. " airline config
  11. let g:airline#extensions#tabline#enabled = 1
  12. let g:airline_powerline_fonts = 1
  13. let g:airline_theme = 'badwolf'
  14. " markdown config
  15. let g:vim_markdown_math = 1
  16. let g:vim_markdown_frontmatter = 1
  17. " plugins management
  18. call plug#begin('~/.local/share/nvim/plugged')
  19. " git plugins
  20. Plug 'godlygeek/tabular'
  21. Plug 'plasticboy/vim-markdown'
  22. Plug 'airblade/vim-gitgutter'
  23. Plug 'tpope/vim-fugitive'
  24. " auto-comment
  25. Plug 'tpope/vim-commentary'
  26. " finder
  27. Plug 'kien/ctrlp.vim'
  28. " tree
  29. Plug 'scrooloose/nerdtree'
  30. Plug 'Xuyuanp/nerdtree-git-plugin'
  31. " airline
  32. Plug 'vim-airline/vim-airline'
  33. Plug 'vim-airline/vim-airline-themes'
  34. " Rust
  35. Plug 'rust-lang/rust.vim'
  36. " Elm
  37. Plug 'elmcast/elm-vim'
  38. call plug#end()