added flash.nvim

This commit is contained in:
Aadi Rave 2025-03-18 22:23:10 -04:00
parent 7f586f5a57
commit a2b1d5cd5e
2 changed files with 20 additions and 3 deletions

View file

@ -90,8 +90,6 @@ P.S. You can delete this when you're done too. It's your config now! :)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.g.tabstop = 2
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = true
@ -797,7 +795,7 @@ require('lazy').setup({
-- Disable "format_on_save lsp_fallback" for languages that don't
-- have a well standardized coding style. You can add additional
-- languages here or re-enable it for the disabled ones.
local disable_filetypes = { c = true, cpp = true }
local disable_filetypes = { c = false, cpp = false }
local lsp_format_opt
if disable_filetypes[vim.bo[bufnr].filetype] then
lsp_format_opt = 'never'
@ -1089,5 +1087,8 @@ vim.api.nvim_create_autocmd('BufReadPost', {
end,
})
vim.g.tabstop = 2
vim.cmd 'set tabstop=2'
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et