Compare commits

...

3 Commits

Author SHA1 Message Date
randomuser ee4e159740 misc changes 2022-12-27 01:07:42 +00:00
randomuser c0fa23ca93 add testing lua nvim config 2022-12-27 01:07:42 +00:00
randomuser 0039d09e1f remove outdate zathura options 2022-12-27 01:07:42 +00:00
4 changed files with 44 additions and 5 deletions

View File

@ -57,3 +57,4 @@ gp() {
alias gs='git status'
alias f=files
alias lofi="mpv https://www.youtube.com/watch?v=jfKfPfyJRdk --no-video"

View File

@ -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

37
nvim/initq.lua Normal file
View File

@ -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')

View File

@ -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"