Merge branch 'master' of https://tildegit.org/randomuser/dot
This commit is contained in:
commit
e7a152dd65
|
@ -96,3 +96,4 @@ record() {
|
|||
|
||||
alias gs='git status'
|
||||
alias f=files
|
||||
alias lofi="mpv https://www.youtube.com/watch?v=jfKfPfyJRdk --no-video"
|
||||
|
|
|
@ -23,3 +23,4 @@ bspc rule -a statusbar border=off sticky=on state=floating manage=off
|
|||
bspc rule -a tmenu-prompt border=on sticky=on state=floating
|
||||
bspc rule -a Xmessage border=on state=floating
|
||||
bspc rule -a Zathura state=tiled
|
||||
bspc rule -a generic-st-window state=floating
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
noremap = { noremap = true }
|
||||
function nnoremap(l, r)
|
||||
vim.keymap.set('n', l, r, noremap)
|
||||
end
|
||||
|
||||
vim.env.mapleader = ' '
|
||||
nnoremap(';', ':')
|
||||
nnoremap(':', ';')
|
||||
|
||||
-- nnoremap('<leader>ym', ':set number!<CR>:set list!<CR>')
|
||||
-- nnoremap('<leader>rr', function() vim.cmd.source('~/.config/nvim/init.lua') end)
|
||||
-- nnoremap('<leader>re', function() vim.cmd.edit('~/.config/nvim/init.lua') end)
|
||||
vim.keymap.set('n', '<leader>rr', function() vim.cmd.source('~/.config/nvim/init.lua') end)
|
||||
|
||||
-- conf.nocompatible = true
|
||||
-- not sure why this does not work
|
||||
-- will checkout later
|
||||
vim.o.number = true
|
||||
vim.o.foldmethod = 'marker'
|
||||
vim.o.encoding = 'utf8'
|
||||
vim.o.list = true
|
||||
vim.o.lcs = 'tab:->,trail:_,eol:^'
|
||||
vim.o.clipboard = 'unnamedplus'
|
||||
vim.o.spell = true
|
||||
vim.o.spelllang = "en_us"
|
||||
vim.o.title = true
|
||||
vim.o.ts = 2
|
||||
vim.o.sw = 2
|
||||
vim.o.hlsearch = true
|
||||
vim.o.incsearch = true
|
||||
vim.o.ignorecase = true
|
||||
vim.o.smartcase = true
|
||||
vim.o.inccommand = 'nosplit'
|
||||
vim.o.hidden = true
|
||||
vim.opt.path:append {'**'}
|
||||
|
||||
vim.cmd.colorscheme('earth')
|
|
@ -7,7 +7,7 @@ set zoom-min 10
|
|||
|
||||
set font "Fantasque Sans Mono 11"
|
||||
|
||||
set show-scrollbars "false"
|
||||
" set show-scrollbars "false"
|
||||
set database "plain"
|
||||
set dbus-service "false"
|
||||
set filemonitor "glib"
|
||||
|
@ -39,10 +39,10 @@ set index-bg "#161510"
|
|||
set index-fg "#ccbc8e"
|
||||
set index-active-bg "#ccbc8e"
|
||||
set index-active-fg "#161510"
|
||||
set tabbar-bg "#161510"
|
||||
set tabbar-fg "#ccbc8e"
|
||||
set tabbar-focus-bg "#ccbc8e"
|
||||
set tabbar-focus-fg "#161510"
|
||||
" set tabbar-bg "#161510"
|
||||
" set tabbar-fg "#ccbc8e"
|
||||
" set tabbar-focus-bg "#ccbc8e"
|
||||
" set tabbar-focus-fg "#161510"
|
||||
|
||||
set notification-bg "#161510"
|
||||
set notification-fg "#ccbc8e"
|
||||
|
|
Loading…
Reference in New Issue