✏️ Adjusted neovim config settings slightly
This commit is contained in:
parent
d3a284c77b
commit
7897ff15b6
3 changed files with 11 additions and 2 deletions
|
|
@ -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)]])
|
||||
|
||||
|
|
|
|||
|
|
@ -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"]])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue