Milos
Milos

Reputation: 1838

Sublime text 3 Notepad++ theme

Does anyone know exact steps for adjusting notepad++ theme or look in sublime text 3. There is one link which is not completely clear to me, and I am looking for some other solution.

Upvotes: 1

Views: 12885

Answers (1)

Milos
Milos

Reputation: 1838

Someone already made whole theme. Here https://gist.github.com/rafaelmussi/3743237 is theme code. It says for sublime text 2, but it also work for sublime text 3.

Installation steps:

1) Open Sublime text and go to: Preferences->Browse packages... or on your hard disc go to: \AppData\Roaming\Sublime Text 3\Packages.

2) Create there some folder where you want to put your theme file, or you can put it in some of already created folder with other themes.

3) Create file Nodepad.tmTheme and put code from github link above into file.

4) Copy file in new created folder or some other folders with themes.

5) Open Sublime text 3 editor, go to: Preferences->Settings-User

6) Reference your new created theme here. Something like:

{
    "color_scheme": "Packages/User/NotepadTheme/Nodepad.tmTheme",
}

save and that is it.

Upvotes: 7

Related Questions