mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
colorscheming; vim: - airline
This commit is contained in:
@@ -18,6 +18,38 @@ let
|
||||
background = black.dark;
|
||||
foreground = white.dark;
|
||||
};
|
||||
connormcd = rec {
|
||||
black = { light = "#454545"; dark = "#222222"; };
|
||||
red = { light = "#FA8072"; dark = "#B22222"; };
|
||||
green = { light = "#779A3E"; dark = "#556B2F"; };
|
||||
yellow = { light = "#DAA520"; dark = "#B8860B"; };
|
||||
blue = { light = "#6495ED"; dark = "#4682B4"; };
|
||||
magenta = { light = "#DA70D6"; dark = "#9932CC"; };
|
||||
cyan = { light = "#B0E0E6"; dark = "#87CEEB"; };
|
||||
white = { light = "#FFFFFF"; dark = "#C0C0C0"; };
|
||||
background = "#000000";
|
||||
foreground = "#AAAAAA";
|
||||
fadeColor = black.dark;
|
||||
cursorColor = green.light;
|
||||
pointerColorForeground = green.light;
|
||||
pointerColorBackground = white.dark;
|
||||
};
|
||||
apprentice = rec {
|
||||
black = { light = "#444444"; dark = "#1c1c1c"; };
|
||||
red = { light = "#ff8700"; dark = "#af5f5f"; };
|
||||
green = { light = "#87af87"; dark = "#5f875f"; };
|
||||
yellow = { light = "#ffffaf"; dark = "#87875f"; };
|
||||
blue = { light = "#8fafd7"; dark = "#5f87af"; };
|
||||
magenta = { light = "#8787af"; dark = "#5f5f87"; };
|
||||
cyan = { light = "#5fafaf"; dark = "#5f8787"; };
|
||||
white = { light = "#999999"; dark = "#6c6c6c"; };
|
||||
background = "#262626";
|
||||
foreground = "#bcbcbc";
|
||||
fadeColor = black.dark;
|
||||
cursorColor = "#bcbcbc";
|
||||
pointerColorForeground = green.light;
|
||||
pointerColorBackground = white.dark;
|
||||
};
|
||||
macOS = rec {
|
||||
black = { light = "#818383"; dark = "#000000"; };
|
||||
red = { light = "#fc391f"; dark = "#c23621"; };
|
||||
@@ -66,8 +98,8 @@ in rec {
|
||||
black = "#000000";
|
||||
gray = "#888888";
|
||||
|
||||
colorScheme = macOS;
|
||||
invertedColorScheme = flip macOS;
|
||||
colorScheme = connormcd;
|
||||
invertedColorScheme = flip connormcd;
|
||||
|
||||
colorPalette = [
|
||||
colorScheme.black.dark colorScheme.red.dark colorScheme.green.dark colorScheme.yellow.dark colorScheme.blue.dark colorScheme.magenta.dark colorScheme.cyan.dark colorScheme.white.dark
|
||||
|
||||
@@ -10,8 +10,8 @@ with import <dot/theme.nix>;
|
||||
scroll.bar.enable = false;
|
||||
extraConfig = {
|
||||
perl-ext-common = "default,clipboard,url-select,matcher";
|
||||
urlLauncher = "chromium";
|
||||
fading = 50;
|
||||
urlLauncher = "/usr/bin/env chromium";
|
||||
fading = 20;
|
||||
iso14755 = false;
|
||||
urgentOnBell = true;
|
||||
reverseVideo = false;
|
||||
|
||||
10
dot/vimrc
10
dot/vimrc
@@ -6,7 +6,8 @@ vnoremap a- :Tabularize /-><CR>
|
||||
nnoremap <C-p> :FZF<CR>
|
||||
let g:fzf_layout = { 'down': '~15%' }
|
||||
|
||||
colorscheme delek
|
||||
" colorscheme delek hipster
|
||||
colorscheme 256_noir
|
||||
|
||||
let mapleader = ","
|
||||
" let maplocalleader="\\"
|
||||
@@ -31,8 +32,11 @@ set title
|
||||
set nocompatible
|
||||
set smartcase
|
||||
set shiftwidth=2 tabstop=2 expandtab
|
||||
set laststatus=1
|
||||
set number
|
||||
set path=$PWD/**
|
||||
set path+=**
|
||||
set splitbelow
|
||||
set splitright
|
||||
set wildmenu
|
||||
set shortmess+=aI
|
||||
set nowritebackup noswapfile
|
||||
@@ -177,7 +181,7 @@ let g:ale_completion_enabled = 1
|
||||
" endif
|
||||
|
||||
"if exists("g:loaded_airline")
|
||||
set noshowmode laststatus=0 noruler
|
||||
" set noshowmode laststatus=0 noruler
|
||||
let g:airline#extensions#tabline#close_symbol = 'X'
|
||||
let g:airline#extensions#tabline#enabled = 0
|
||||
"let g:airline#extensions#tabline#left_alt_sep = ''
|
||||
|
||||
Reference in New Issue
Block a user