Skip to content

petr0max/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyDotfiles

This is my Dotfiles using on Linux

Sebelum menggunakan config vim dari saya. Saya sarankan untuk menginstall terlebih dahulu bundle paketnya lewat VimPlug.

Require

  1. VimPlug
  2. autopep8
  3. ctags
  4. flake8

Installasi

Download plug.vim and put it in the "autoload" directory.

Vim

Unix
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Windows (PowerShell)
md ~\vimfiles\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\autoload\plug.vim"))

Neovim

Unix
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Windows (PowerShell)
md ~\AppData\Local\nvim\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
(New-Object Net.WebClient).DownloadFile($uri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\AppData\Local\nvim\autoload\plug.vim"))

vimrc

  • Untuk penggunaan Tagbar gunakan tombol "F8" pada keyboar anda, (catatan: sebelumnya install terlebih dahulu ctags)
  • Automatic check PEP8
  • Saya telah menambahkan fitur autocomplete PEP8 dari autopep8 dengan kombinasi dari vim-autopep8 dengan menekan tombol "F6" maka otomatis dikoreksi.

About

Dotfiles from my Desktop

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published