Atom一些隨筆

一、下載安裝html

  這是官網,進去就會看到下載按鈕,還有其餘版本的下載地址,我安裝了1.18.0;node

二、界面設置git

  除過總體主題在settings中設置以外github

  在Stylesheet.less中還能夠設置其他部分例如編輯器系統字體,顏色,背景色,這是我目前的樣式:express

 //標籤欄
 .tab-bar .tab {
   font-size: 18px;
 }
 //總體系統
html, body{
  font-size:14px;
}
// style the background color of the tree view
//工程結構區域
.tree-view {
  background-color: #eee;
  font-family: microsoft yahei;
  font-size: 17px;
}
// style the background and foreground colors on the atom-text-editor-element itself
//編輯器內部
atom-text-editor {
  // color: white;
  background-color:#121517;
  font-family: "Consolas";
  font-size: 18px;
}

// To style other content in the text editor's shadow DOM, use the ::shadow expression
//光標
atom-text-editor::shadow .cursor {
  border-color: #64DB4D;
}

來源:點我跳轉less

3.插件編輯器

  官網給出的插件庫,還有一些比較好的總結(點我跳轉),除自帶的以外,我額外裝了這幾個:字體

  

  activate-power-mode能夠在寫代碼時增長趣味:atom

  

  

  file-icon能夠給不一樣文件類型加上不一樣的圖標,主要仍是增長趣味性。。。spa

  

  highlight-selected用來高亮相同的字符。

相關文章
相關標籤/搜索