Skip to content

Instantly share code, notes, and snippets.

@iisti
iisti / .vimrc
Last active February 14, 2024 16:16 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@iisti
iisti / SonarQubeConfig.txt
Created April 30, 2024 08:08 — forked from marek-panek/SonarQubeConfig.txt
SonarQube configuration with PostgreSQL
1. In PostgreSQL database
1.1 Create user
create user <user_name> with password '<password>';
1.2 Create database
create database <db_name> with owner <user_name> encoding 'UTF8';
2. Edit <sonar_install_dir>/conf/sonar.properties