✏️ Adjusted neovim config settings slightly

This commit is contained in:
z3rOR0ne 2023-01-18 16:43:06 -08:00
parent d3a284c77b
commit 7897ff15b6
3 changed files with 11 additions and 2 deletions

View file

@ -31,7 +31,7 @@ vim.keymap.set("n", "<F11>", ":set spell!<cr>", { silent = true })
vim.keymap.set("n", "<leader>x", "<cmd>!chmod +x %<CR>", { silent = true })
-- Vimium Like Keybindings
vim.keymap.set("n", "t", "<c-w>:tabnew<CR>", {})
vim.keymap.set("n", "<S-t>", "<c-w>:tabnew<CR>", {})
vim.keymap.set("n", "<S-tab>", "<c-w>:tabprevious<CR>", {})
vim.keymap.set("n", "<S-j>", "<c-w>:tabprevious<CR>", {})
@ -92,3 +92,4 @@ vim.cmd([[nnoremap rg :silent :Rg]])
--toggle autocompletion
vim.cmd([[nnoremap cmp :silent lua SetAutoCmp(Mode)]])

View file

@ -86,7 +86,7 @@ endfunction]])
vim.cmd([[command! -nargs=* FZFExplore call FzfExplore(shellescape(<q-args>))]])
-- fzf is on bottom of screen
vim.cmd([[let g:fzf_layout = { 'down': '~30%' }]])
-- vim.cmd([[let g:fzf_layout = { 'down': '~30%' }]])
--lastplace ignores fzf
vim.cmd([[let g:lastplace_ignore_buftype = "quickfix, nofile, help, FZF"]])