dotfiles/.config/micro/settings.json

34 lines
1.2 KiB
JSON

{
"autoclose": false, // Dont close quotes and braces automatically
"tabstospaces": true, // Use spaces
"tabsize": 2,
"hltaberrors": false, // Highlight spacing errors (disabled for now)
"colorscheme": "monokai",
"scrollbar": true, // Not currently draggable yet ;-;, https://github.com/micro-editor/micro/issues/3414
"keepautoindent": true, // I have a habit of using Enter on the FOLLOWING line sometimes, this makes the new line have indent
"diffgutter": true, // Show diff changes in the gutter
"hlsearch": true,
"statusformatl": "Line $(line), Column $(col)",
"statusformatr": "$(opt:filetype) | $(opt:fileformat) | $(opt:encoding)",
// Show whitespace characters very similar to Sublime whitespace visible.
// bullet for spaces, and emdash for tabs
// (multiple emdashes so all space is filled by them)
"showchars": "ispace=·,space=·,itab=————",
//Plugins
"lsp.server": "typescript=typescript-language-server --stdio",
"filemanager-openonstart": true, //TODO: Doesnt seem to work...
"fzfopen": "newtab",
//Filetypes
"*.jsonc": {
"filetype": "json"
},
"*.md": {
"wordwrap": true,
"softwrap": true
}
}