Browse Source

Update color settings

master
Marcel Schneider 2 years ago
parent
commit
9232734594
No known key found for this signature in database GPG Key ID: 86027C59718EEE88
  1. 38
      init.vim
  2. 34
      tmux/theme.sh
  3. 5
      tmux/tmux.conf.symlink

38
init.vim

@ -46,7 +46,7 @@ Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'make' } " improve sort performance
Plug 'pwntester/octo.nvim'
"Plug 'github/copilot.vim'
Plug 'github/copilot.vim'
" {{{ CocPlugins
Plug 'neoclide/coc-json', { 'do': 'yarn install --frozen-lockfile' }
@ -131,13 +131,18 @@ filetype plugin indent on " required
" THEME{{{
colorscheme solarized
set background=dark
"set background=dark
" Use light theme if whole shell is in light mode
let themeenv=$THEME_SWITCHER
if themeenv=='light'
set background=light
endif
hi CocFloating ctermbg=248 ctermfg=238 guibg=#b3b3b3
hi CocMenuSel ctermbg=250 ctermfg=239 guibg=#c9c9c9
" }}}
" SETTINGS{{{
@ -281,7 +286,27 @@ require'nvim-treesitter.configs'.setup {
-- },
},
},
},
move = {
enable = true,
set_jumps = true, -- whether to set jumps in the jumplist
goto_next_start = {
["]m"] = "@function.outer",
["]]"] = { query = "@class.outer", desc = "Next class start" },
},
goto_next_end = {
["]M"] = "@function.outer",
["]["] = "@class.outer",
},
goto_previous_start = {
["[m"] = "@function.outer",
["[["] = "@class.outer",
},
goto_previous_end = {
["[M"] = "@function.outer",
["[]"] = "@class.outer",
},
},
},
}
EOF
" }}}
@ -308,6 +333,7 @@ let g:nv_main_directory = '~/notes'
" ALE {{{
let g:airline#extensions#ale#enabled = 1
let g:ale_writegood_options = '--no-eprime'
"}}}
let vim_tags_ctags_binary='~/bin/phpctags'"
@ -513,4 +539,10 @@ let g:doge_javascript_settings = {
let g:doge_doc_standard_python = 'google'
let g:doge_mapping_comment_jump_forward = '<c-k>'
" Copilot settings
" accept on enter, if no suggestion is selected fallback to default
imap <silent><script><expr> <C-J> copilot#Accept("<CR>")
let g:copilot_no_tab_map = v:true
"}}}

34
tmux/theme.sh

@ -1,3 +1,35 @@
#### COLOUR (Solarized 256)
# default statusbar colors
#set-option -g status-style fg=colour136,bg=colour235 #yellow and base02
## default window title colors
#set-window-option -g window-status-style fg=colour244,bg=default #base0 and default
#set-window-option -g window-status-style dim
## active window title colors
#set-window-option -g window-status-current-style fg=colour166,bg=default #orange and default
##set-window-option -g window-status-current-style bright
## pane border
#set-option -g pane-border-style fg=colour235 #base02
#set-option -g pane-active-border-style fg=colour240 #base01
## message text
#set-option -g message-style fg=colour166,bg=colour235 #orange and base02
## pane number display
#set-option -g display-panes-active-colour colour33 #blue
#set-option -g display-panes-colour colour166 #orange
## clock
#set-window-option -g clock-mode-colour colour64 #green
## bell
#set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red
#-------------------
#### COLOUR
tm_icon="♟"
@ -21,7 +53,7 @@ set -g status-interval 5
# default statusbar colors
# set-option -g status-bg colour0
set-option -g status-fg $tm_color_active
set-option -g status-bg default
set-option -g status-bg "#002b36" #default
# default window title colors
set -g window-status-style fg=$tm_color_inactive,bg=default

5
tmux/tmux.conf.symlink

@ -1,8 +1,9 @@
set -g default-command "zsh"
set -g default-terminal "tmux-256color"
set-option -sa terminal-features ',tmux-256color:Tc'
set -g history-limit 20000
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'
set-option -sa terminal-features ',xterm-kitty:RGB'
# automatically renumber tmux windows
set -g renumber-windows on
@ -51,6 +52,8 @@ bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
# quickly open a new window
bind N new-window -c "#{pane_current_path}"
# quickly open a new screen
bind S new-session
# split window and fix path for tmux 1.9
bind | split-window -h -c "#{pane_current_path}"

Loading…
Cancel
Save