Skip to content

jorge-fco/Sublime-Text-Preferences

Repository files navigation

Sublime Text Preferences

Settings and preferences Sublime Text 3

Install Package Control

Sublime Text 3 | Package Control

Snippets

Create snippets in Sublime Text 3 (Tools -> Developer -> New Snippet)

Create snippet Grids in Bootstrap

	<snippet>
		<content><![CDATA[
		<div class="row">
			<div class="col-md-6">6</div>
			<div class="col-md-6">6</div>
		</div>
		]]></content>
		<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
		<tabTrigger>rows</tabTrigger>
		<!-- Optional: Set a scope to limit where the snippet will trigger -->
		<!-- <scope>source.python</scope> -->
	</snippet>

Create snippet Forms in Bootstrap

	<snippet>
		<content><![CDATA[
		<form action="#" method="POST" accept-charset="utf-8" role="form">
			<div class="form-group">
				<label for="">Nombre</label>
				<input type="text" name="" value="" placeholder="" class="form-control">
			</div>
			<div class="form-group">
				<button type="submit" class="btn btn-default">Enviar</button>
			</div>
		</form>
		]]></content>
		<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
		<tabTrigger>forms</tabTrigger>
		<!-- Optional: Set a scope to limit where the snippet will trigger -->
		<!-- <scope>source.python</scope> -->
	</snippet>

Install Package and Plugins

command and shortcuts (Ctrl + Shift + P) -> (Package Control - Install Package)

Configuration and Preferences

User preferences for settings sublime text (Preferences -> Settings - User)

Themes

📂 Dracula Color Scheme

View plugin and documentation official Draculatheme

image

📂 Seti UI

View plugin and documentation official Seti_UI

image

📂 Material Theme

Material Theme for Sublime Text view plugin and documentation official Material-Theme

image