configuring rofi, turning off line numbers

master
Jordan Orelli 1 year ago
parent 7a2d0615d5
commit 4a900bc434

@ -25,10 +25,9 @@ target_root: ~/.config
files: files:
rofi rofi
[run vim-plugins]
# [run vim-plugins] when: host.has('vim')
# when: host.has('vim') cmd: vim +PluginInstall +qall
# cmd: vim +PluginInstall +qall
[link-files neovim:windows] [link-files neovim:windows]
when: host.is_windows and host.has('nvim') when: host.is_windows and host.has('nvim')

@ -6,10 +6,13 @@ configuration {
action: "kb-cancel"; action: "kb-cancel";
delay: 0; delay: 0;
} }
filebrowser { filebrowser {
directories-first: true; directories-first: true;
sorting-method: "name"; sorting-method: "name";
} }
terminal: "/home/jordan/dev/kitty/kitty/launcher/kitty";
} }
@theme "material" @theme "material"

19
vimrc

@ -201,10 +201,8 @@ if &t_Co > 2 || has("gui_running")
try try
colorscheme jellybeans colorscheme jellybeans
catch catch
silent! colorscheme delek silent! colorscheme habamax
endtry endtry
endif endif
" ---------------------------------------------------------------------------}}} " ---------------------------------------------------------------------------}}}
@ -306,6 +304,9 @@ noremap <C-n><C-n> :tabnew %<CR>
noremap <C-n><o> :tab term<CR> noremap <C-n><o> :tab term<CR>
noremap <C-n><C-o> :tab term<CR> noremap <C-n><C-o> :tab term<CR>
tnoremap <C-b><b> :bnext<CR>
tnoremap <C-b><C-b> :bnext<CR>
" move by visual lines when moving instead of physical lines " move by visual lines when moving instead of physical lines
noremap <buffer> <silent> k gk noremap <buffer> <silent> k gk
noremap <buffer> <silent> j gj noremap <buffer> <silent> j gj
@ -317,7 +318,9 @@ noremap <buffer> <silent> $ g$
" Normal Mode ---------------------------------------------------------------{{{ " Normal Mode ---------------------------------------------------------------{{{
" toggle line numbering with <leader>n " toggle line numbering with <leader>n
nnoremap <leader>n :set number!<CR> nnoremap <leader>n :set number!<CR>
set number
" line numbers should be hidden by default
set nonumber
" Shortcut to show invisible characters " Shortcut to show invisible characters
nnoremap <leader>l :set list!<CR> nnoremap <leader>l :set list!<CR>
@ -333,6 +336,12 @@ noremap <Leader>ci NERDComInvertComment
" ---------------------------------------------------------------------------}}} " ---------------------------------------------------------------------------}}}
" Buffers -------------------------------------------------------------------{{{
"
" nmap
" ---------------------------------------------------------------------------}}}
" Git -----------------------------------------------------------------------{{{ " Git -----------------------------------------------------------------------{{{
let g:signify_disable_by_default = 1 let g:signify_disable_by_default = 1
@ -349,6 +358,8 @@ nmap <leader>vc :Git commit<CR>
nmap <leader>vp :Git push<CR> nmap <leader>vp :Git push<CR>
nmap <leader>va :Git add %<CR> nmap <leader>va :Git add %<CR>
" fart
nmap <leader>vj <plug>(signify-next-hunk) nmap <leader>vj <plug>(signify-next-hunk)
nmap <leader>vk <plug>(signify-prev-hunk) nmap <leader>vk <plug>(signify-prev-hunk)

Loading…
Cancel
Save