This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:syntax on | |
:set tabstop=2 | |
:set shiftwidth=2 | |
:set smarttab | |
:set expandtab | |
:set smartindent | |
:set number | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.7 | |
import QtQuick.Window 2.2 | |
import QtQuick.Controls 2.0 | |
import Qt.labs.calendar 1.0 | |
Rectangle { | |
id: mainForm | |
height: cellSize * 12 | |
width: cellSize * 8 | |
property double mm: Screen.pixelDensity |