]> src.twobees.de Git - dotfiles.git/commitdiff
..
authorTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sat, 5 Aug 2023 10:53:35 +0000 (12:53 +0200)
committerTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sat, 5 Aug 2023 10:53:35 +0000 (12:53 +0200)
stow/mako/.config/mako/config [new file with mode: 0644]
stow/nvim/.config/nvim/ftplugin/typescript.vim [new file with mode: 0644]
stow/nvim/.config/nvim/ftplugin/typescriptreact.vim [new symlink]
stow/nvim/.config/nvim/init.lua
stow/oh-my-zsh/.oh-my-zsh
stow/sway/.config/sway/config

diff --git a/stow/mako/.config/mako/config b/stow/mako/.config/mako/config
new file mode 100644 (file)
index 0000000..6ace371
--- /dev/null
@@ -0,0 +1,2 @@
+on-button-middle=dismiss-group
+default-timeout=10000
diff --git a/stow/nvim/.config/nvim/ftplugin/typescript.vim b/stow/nvim/.config/nvim/ftplugin/typescript.vim
new file mode 100644 (file)
index 0000000..528addf
--- /dev/null
@@ -0,0 +1,3 @@
+let b:auto_save = 1
+":AutoSaveToggle
+let g:auto_save_silent = 1  " do not display the auto-save notification
diff --git a/stow/nvim/.config/nvim/ftplugin/typescriptreact.vim b/stow/nvim/.config/nvim/ftplugin/typescriptreact.vim
new file mode 120000 (symlink)
index 0000000..8653162
--- /dev/null
@@ -0,0 +1 @@
+typescript.vim
\ No newline at end of file
index 9cf63999f21c6512cbd33b441f3989d7d6469b8e..bfc6ee34b7bab9d1b1449d77cae9b1ed8bed8068 100644 (file)
@@ -20,6 +20,11 @@ vim.opt.rtp:prepend(lazypath)
 require('lazy').setup({
   -- NOTE: First, some plugins that don't require any configuration
 
+  'jose-elias-alvarez/null-ls.nvim',
+  'MunifTanjim/prettier.nvim',
+
+  '907th/vim-auto-save',
+
   -- Git related plugins
   'tpope/vim-fugitive',
   'tpope/vim-rhubarb',
@@ -39,7 +44,7 @@ require('lazy').setup({
 
       -- Useful status updates for LSP
       -- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
-      { 'j-hui/fidget.nvim',  opts = {},  tag = 'legacy'  },
+      { 'j-hui/fidget.nvim',       opts = {},    tag = 'legacy' },
 
       -- Additional lua configuration, makes nvim stuff amazing!
       'folke/neodev.nvim',
@@ -49,8 +54,12 @@ require('lazy').setup({
   {
     -- Autocompletion
     'hrsh7th/nvim-cmp',
-    dependencies = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip',
-      'rafamadriz/friendly-snippets' },
+    dependencies = {
+      'hrsh7th/cmp-nvim-lsp',
+      {'L3MON4D3/LuaSnip', version = "2.*", build = "make install_jsregexp"},
+      'saadparwaiz1/cmp_luasnip',
+      'rafamadriz/friendly-snippets'
+    },
   },
 
   -- Useful plugin to show you pending keybinds.
@@ -132,7 +141,7 @@ require('lazy').setup({
   -- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
   --       These are some example plugins that I've included in the kickstart repository.
   --       Uncomment any of the lines below to enable them.
-  require 'autoformat',
+  -- require 'autoformat',
   -- require 'kickstart.plugins.debug',
 
   -- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
@@ -154,6 +163,7 @@ vim.o.hlsearch = false
 
 -- Make line numbers default
 vim.wo.relativenumber = true
+vim.wo.number = true
 
 -- Enable mouse mode
 vim.o.mouse = 'a'
@@ -330,9 +340,10 @@ require('nvim-treesitter.configs').setup {
 -- Diagnostic keymaps
 vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' })
 vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' })
+vim.keymap.set('n', '<S-F8>', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' })
+vim.keymap.set('n', '<F8>', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' })
 vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Open floating diagnostic message' })
 vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostics list' })
-
 -- LSP settings.
 --  This function gets run when an LSP connects to a particular buffer.
 local on_attach = function(_, bufnr)
@@ -466,5 +477,65 @@ cmp.setup {
   },
 }
 
+
+
+
+
+local null_ls = require("null-ls")
+
+local group = vim.api.nvim_create_augroup("lsp_format_on_save", { clear = false })
+local event = "BufWritePre" -- or "BufWritePost"
+local async = event == "BufWritePost"
+
+null_ls.setup({
+  on_attach = function(client, bufnr)
+    if client.supports_method("textDocument/formatting") then
+      vim.keymap.set("n", "<Leader>f", function()
+        vim.lsp.buf.format({ timeout = 10000, bufnr = vim.api.nvim_get_current_buf() })
+      end, { buffer = bufnr, desc = "[lsp] format" })
+
+      --  -- format on save
+      --  vim.api.nvim_clear_autocmds({ buffer = bufnr, group = group })
+      --  vim.api.nvim_create_autocmd(event, {
+      --    buffer = bufnr,
+      --    group = group,
+      --    callback = function()
+      --      vim.lsp.buf.format({ bufnr = bufnr, async = async })
+      --    end,
+      --    desc = "[lsp] format on save",
+      --  })
+    end
+
+    if client.supports_method("textDocument/rangeFormatting") then
+      vim.keymap.set("x", "<Leader>f", function()
+        vim.lsp.buf.format({ bufnr = vim.api.nvim_get_current_buf() })
+      end, { buffer = bufnr, desc = "[lsp] format" })
+    end
+  end,
+})
+
+
+local prettier = require("prettier")
+
+prettier.setup({
+  bin = 'prettierd', -- or `'prettierd'` (v0.23.3+)
+  filetypes = {
+    "css",
+    "graphql",
+    "html",
+    "javascript",
+    "javascriptreact",
+    "json",
+    "less",
+    "markdown",
+    "scss",
+    "typescript",
+    "typescriptreact",
+    "yaml",
+  },
+})
+
+vim.opt.diffopt = vim.opt.diffopt + "vertical"
+
 -- The line beneath this is called `modeline`. See `:help modeline`
 -- vim: ts=2 sts=2 sw=2 et
index b5be2d39e2d2a598f7bba26d0bae2cce8c7d3d64..4188b22aea3356a02768505103e42a96d18547a3 160000 (submodule)
@@ -1 +1 @@
-Subproject commit b5be2d39e2d2a598f7bba26d0bae2cce8c7d3d64
+Subproject commit 4188b22aea3356a02768505103e42a96d18547a3
index 07feb0f42201ba4a299fa09e4b0aeed0b684903b..da8fae43850678284434238e884b91970faba9a9 100644 (file)
@@ -18,8 +18,8 @@ set $term ~/.bin/sensible-terminal.sh
 # Your preferred application launcher
 # Note: pass the final command to swaymsg so that the resulting window can be opened
 # on the original workspace that the command was run on.
-set $menu dmenu_path | dmenu | xargs swaymsg exec --
-
+#set $menu dmenu_path | dmenu | xargs swaymsg exec --
+set $menu /usr/bin/ulauncher
 include /etc/sway/config-vars.d/*
 
 ### Output configuration
@@ -38,8 +38,8 @@ include /etc/sway/config-vars.d/*
 # Example configuration:
 #
  exec swayidle -w \
-          timeout 300 'swaylock -f -c 000000' \
-          timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
+          timeout 1200 'swaylock -f -c 000000' \
+          timeout 1201 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
           before-sleep 'swaylock -f -c 000000'
 #
 # This will lock your screen after 300 seconds of inactivity, then turn off
@@ -225,7 +225,8 @@ bar {
 include /etc/sway/config.d/*
 
 # custom... 
-exec dunst
+# mako for notifications
+exec mako 
 exec pasystray
 exec sleep 3 && nextcloud --background
 exec pass git pull