Browse Source

more configuration

master
Juni Kim 3 years ago
parent
commit
d2c6395bb6
  1. 3
      guix/.config/i3/config
  2. 6
      guix/.config/nvim/init.vim

3
guix/.config/i3/config

@ -13,7 +13,8 @@ set $mod Mod4
# Font for window titles. Will also be used by the bar unless a different font # Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below. # is used in the bar {} block below.
font pango:monospace 8
#font pango:monospace 8
font pango:JetBrains Mono 8
# This font is widely installed, provides lots of unicode glyphs, right-to-left # This font is widely installed, provides lots of unicode glyphs, right-to-left
# text rendering and scalability on retina/hidpi displays (thanks to pango). # text rendering and scalability on retina/hidpi displays (thanks to pango).

6
guix/.config/nvim/init.vim

@ -1,6 +1,5 @@
set termguicolors set termguicolors
set mouse+=a set mouse+=a
let g:airline_them ='base16_atelier_heath_light'
set number set number
set wrap set wrap
set linebreak set linebreak
@ -20,3 +19,8 @@ autocmd FileType markdown,tex,text set nosmarttab noautoindent
autocmd FileType c,cpp,slang set cindent autocmd FileType c,cpp,slang set cindent
" * Keystrokes -- Insert Mode " * Keystrokes -- Insert Mode
autocmd Filetype python set shiftwidth=4 tabstop=4 softtabstop=4 autocmd Filetype python set shiftwidth=4 tabstop=4 softtabstop=4
nnoremap <c-h> <c-w>h
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-l> <c-w>l
Loading…
Cancel
Save