We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302d6fb commit 322af3cCopy full SHA for 322af3c
vimrc_python
@@ -0,0 +1,28 @@
1
+Configuring Vim with a Vimrc file
2
+Short example of ~/.vimrc file I used for development. Copy the file as ~/.vimrc
3
+" enable syntax highlighting
4
+syntax enable
5
+
6
+" show line numbers
7
+set number
8
9
+" set tabs to have 4 spaces
10
+" set ts=4
11
12
+" indent when moving to the next line while writing code
13
+set autoindent
14
15
+" expand tabs into spaces
16
+ set expandtab
17
18
+" when using the >> or << commands, shift lines by 4 spaces
19
+set shiftwidth=4
20
21
+" show a visual line under the cursor's current line
22
+set cursorline
23
24
+" show the matching part of the pair for [] {} and ()
25
+set showmatch
26
27
+" enable all Python syntax highlighting features
28
+let python_highlight_all = 1
0 commit comments