profile for Gajendra D Ambi on Stack Exchange, a network of free, community-driven Q&A sites

Tuesday, November 14, 2017

My configuration of atom for python

install Atom
open settings (ctrl+,) [windows] or file>settings
font type: consolas
settings>your stylesheet>styles.less
settings>editor>font family-->consolas
settings>editor>font size-->20
settings>editor>show indent guide-->true/check
settings>editor>tab lentgh-->4 for python
settings>editor>scroll past end
packages
--------
>>script
configure script's font size
.script-view .line {
  font-size: 14px;
}
packages>script>viewCode>keymaps>scripts.cson-->change code run keymap to ctrl-b from ctrl-shift-b

>>minimap
>>platformio-ide-terminal
>>autosave>check
>>minimap-highlight-selected
>>flake8
>>python-autopep8
>>file-icons
>>autocomplete-python
settings>format on save>check
Go to userprofile>.atom>init.coffee and add
atom.setWindowDimensions({"width": 1920, "height": 1080})
to open it in always 1920*1080 resolution.
>>click anywhere in tree view and press 'I' (uppercase I). This allows you to see hidden or files and folders which are added to .gitignore file. You can switch between hidden view and and normal view by pressing 'uppercase I' in the tree view.

No comments:

Post a Comment