mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-25 21:01:45 +00:00
Compare commits
4 Commits
bc4cd2a521
...
4c2f4424f7
Author | SHA1 | Date | |
---|---|---|---|
4c2f4424f7 | |||
4c96b90236 | |||
9164c73524 | |||
5fd11168cd |
@ -4,12 +4,12 @@ return {
|
||||
lazy = false,
|
||||
keys = {
|
||||
{
|
||||
'<leader>f',
|
||||
'<leader>fb',
|
||||
function()
|
||||
require('conform').format { async = true, lsp_fallback = true }
|
||||
end,
|
||||
mode = '',
|
||||
desc = '[F]ormat buffer',
|
||||
desc = '[F]ormat [B]uffer',
|
||||
},
|
||||
},
|
||||
opts = {
|
||||
@ -31,7 +31,7 @@ return {
|
||||
--
|
||||
-- You can use a sub-list to tell conform to run *until* a formatter
|
||||
-- is found.
|
||||
javascript = { { "prettierd", "prettier" } },
|
||||
javascript = { { 'prettierd', 'prettier' } },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -19,6 +19,9 @@ return {
|
||||
|
||||
-- Simple file explorer with in-buffer-editing
|
||||
require('mini.files').setup()
|
||||
vim.keymap.set({ 'n', 'v' }, '<leader>fe', function()
|
||||
MiniFiles.open()
|
||||
end, { desc = '[F]ile [E]xplorer' })
|
||||
|
||||
-- Simple and easy statusline.
|
||||
-- You could remove this setup call if you don't like it,
|
||||
|
@ -34,6 +34,7 @@ return {
|
||||
['<leader>t'] = { name = '[T]oggle', _ = 'which_key_ignore' },
|
||||
['<leader>dn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>l'] = { name = '[L]ist', _ = 'which_key_ignore' },
|
||||
['<leader>f'] = { name = '[F]ormat/[F]ile', _ = 'which_key_ignore' },
|
||||
}
|
||||
|
||||
-- register which-key VISUAL mode
|
||||
@ -47,6 +48,7 @@ return {
|
||||
['<leader>dn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>pn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>l'] = { name = '[L]ist', _ = 'which_key_ignore' },
|
||||
['<leader>f'] = { name = '[F]ormat/[F]ile', _ = 'which_key_ignore' },
|
||||
}, { mode = 'v' })
|
||||
end,
|
||||
},
|
||||
|
@ -7,13 +7,15 @@
|
||||
vim.api.nvim_exec2('language en_US', {})
|
||||
|
||||
-- Shell options
|
||||
-- Sets the shell to use for system() and ! commands
|
||||
-- Sets the shell to use for system() and ! commands in windows
|
||||
if vim.fn.has 'win32' then
|
||||
vim.opt.shell = 'powershell.exe'
|
||||
vim.opt.shellcmdflag = '-NonInteractive -NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command '
|
||||
vim.opt.shellxquote = ''
|
||||
vim.opt.shellquote = ''
|
||||
vim.opt.shellredir = '2>&1 | Out-File -Encoding UTF8 %s'
|
||||
vim.opt.shellpipe = '2>&1 | Out-File -Encoding UTF8 %s'
|
||||
end
|
||||
|
||||
-- Format settings
|
||||
-- Make line numbers default
|
||||
@ -84,6 +86,9 @@ vim.opt.cursorline = true
|
||||
vim.opt.scrolloff = 8
|
||||
vim.opt.sidescrolloff = 12
|
||||
|
||||
-- Set cursor pointer to block
|
||||
vim.opt.guicursor = 'n-v-i-c:block-Cursor'
|
||||
|
||||
-- Options specifically targeted at Neovide
|
||||
if vim.g.neovide then
|
||||
vim.o.guifont = 'CaskaydiaCove Nerd Font Mono:h14'
|
||||
|
Loading…
Reference in New Issue
Block a user