-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
115 lines (110 loc) · 4.27 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" "
" Instalacja dodatków "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set nocompatible "wymagane do dzialania pluginow
filetype off "wymagane do dzialania pluginow
" ustawia siezke dla Vundle i inicjalizuje
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" pozwala Vundle zarzadzac pluginami, wymagane
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'vim-syntastic/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'jnurmine/Zenburn'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'NLKNguyen/papercolor-theme'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'suan/vim-instant-markdown', {'rtp': 'after'}
Plugin 'lepture/vim-jinja'
" Dodatki muszą być przed tą linią
call vundle#end() "wymagane
filetype plugin indent on "wymagane
" Ustawienia dla ultisnips
let g:UltiSnipsExpandTrigger="<c-z>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
" Ustawienia dla vim-markdown
filetype plugin on
"Uncomment to override defaults:
"let g:instant_markdown_slow = 1
"let g:instant_markdown_autostart = 0
"let g:instant_markdown_open_to_the_world = 1
"let g:instant_markdown_allow_unsafe_content = 1
"let g:instant_markdown_allow_external_content = 0
"let g:instant_markdown_mathjax = 1
"let g:instant_markdown_logfile = '/tmp/instant_markdown.log'
"let g:instant_markdown_autoscroll = 0
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" "
" Podstawowe ustawienia "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
syntax enable
set laststatus=2 "ustawienia dla powerline
set t_Co=256 "ustawienia dla powerline
set nu
set tabstop=4
set shiftwidth=4
set history=100
" pokazuje niekoniczone komedny vima
set showcmd
" pokazuje menu kiedy uzywakmy tab aotouzupelnienia (polecenia : vim)
set wildmenu
" ustawia liczbe linijek jaka bedzie wyswietlana po z + enter
set scrolloff=5
set hlsearch
set incsearch
" jak lina tekstu nie miesci się na ekranie to łamie ją miedzy słowami, a nie w środku słowa
set lbr
" zostawia wciecie z poprzedniej linijki
set ai
" sam stara się rozpoznac kiedy zrobic wciecie tekstu
set si
set splitbelow
" przy podziale okna nowe okno poniżej a nie powyżej aktywnego okna
set encoding=utf-8
" ustawia chowek systemu na rejest unnamed
colorscheme zenburn
"set background=light "schemat na cwiczenia
"colorscheme PaperColor "schemat na cwiczenia
" Start vim z NERDTree
autocmd VimEnter * NERDTree
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" "
" Własne komendy i przypisania "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Open a new tab with NERDTree and create or edit a new file
command! -nargs=1 TabNewFile tabnew | NERDTree | wincmd p | execute 'edit' <q-args>
" Edit an existing file in a new tab with NERDTree
command! -nargs=1 TabEditFile tabnew | NERDTree | wincmd p | execute 'edit' <q-args>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" "
" Ustawienia indent PEP 8 "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
au BufNewFile,BufRead *.py
\set tabstop=4
\set softtabstop=4
\set shiftwidth=4
\set textwidth=79
\set expandtab
\set ai
\set fileformat=unix
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" "
" Ustawienia indent dla html "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
au BufNewFile,BufRead *.js, *.html, *.css
\set tabstop=2
\set softtabstop=2
\set shiftwidth=2